0

When I try to access api.quickblox.com/session.xml to create a session, I get a 404 error.

I tried to access it in both browser and c#. In the browser I get:

The page you were looking for doesn't exist.

You may have mistyped the address or the page may have moved.

In C# I get

System.WebException: (404) Not Found.

Community
  • 1
  • 1
Sergey
  • 47,222
  • 25
  • 87
  • 129

1 Answers1

1

You have to use POST request (not GET) to access to this API

Please read here http://quickblox.com/developers/Authentication_and_Authorization#Requests_and_Responses

Rubycon
  • 18,156
  • 10
  • 49
  • 70