Hey guys,
I seems as if the status 201 is returned on succes calling createChatRoom() while it really should be 200; according to the documentation.
Thanks in advance
Qwertier
Hey guys,
I seems as if the status 201 is returned on succes calling createChatRoom() while it really should be 200; according to the documentation.
Thanks in advance
Qwertier
Actually 201 is correct. See: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
Your app should treat any 2XX code as a success.
Thanks Rob that helps a lot!
After testing some of the other calls I found that the sendmessage call is returning 404 on success.
I know that the call was succesful because the message is present in the getChatHistory call…
Thanks
Actually 201 is correct. See: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
Your app should treat any 2XX code as a success.
Thanks Rob that helps a lot!
After testing some of the other calls I found that the sendmessage call is returning 404 on success.
I know that the call was succesful because the message is present in the getChatHistory call…
Thanks