XF 2.1 API Permission XF 2.1

hanyuwomr

Member
I'm using api xenforo for mobile.But when i using GET everything ok , but post it not running.my API key ok for get .I don't understand ?

Please help me
Thanks.
Code:
{
    "errors": [
        {
            "code": "do_not_have_permission",
            "message": "You do not have permission to view this page or perform this action.",
            "params": []
        }
    ]
}
 
Generally speaking, API calls respect the permissions of the user you're making the request as. This would indicate that the user doesn't have permission (via the standard XF permission system) to take the action you're trying to make.
 
Top Bottom