Hello,
I have a similar problem but I am not sure what I am doing wrong.
First I send the request with following url :
http://mysite.com/api/get_nonce/?controller=posts&method=create_post
Response :
{
“status”: “ok”,
“controller”: “posts”,
“method”: “create_post”,
“nonce”: “0c3ce057bc”
}
Then I use this nonce to generate auth_cookie using this url :
http://mysite.com/api/auth/generate_auth_cookie/
and I get :
{
“status”: “error”,
“error”: “Your ‘nonce’ value was incorrect. Use the ‘get_nonce’ API method.”
}
I am posting the nonce so its not in the url . Thats not the issue as all other webservices are working ok with POST rather then GET.
I am pretty sure this was working before. I am trying this after a few days and this is all I get. Can you please help in this regard?