As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hi Mihai,
Could you please share some more information regarding the request you are trying to execute through Postman:
Hi Mihai,
You should send the request in following way:
Hi ,
I made a POST to https://baas.kinvey.com/user/kid_myappkey/login
With headers accept:application/json;charset=utf-8
Authorization: Basic base64(kid_myappkey:Appsecret)
With Body :
{
"username":"value",
"password":"value"
}
I've followed the instructions I get this error :
{
"error": "IncompleteRequestBody",
"description": "The request body is either missing or incomplete",
"debug": "The body of the request is missing credentials required to login"
}
Just for future reference, as this was resolved on a different channel:
The client was only sending an "accept:
application/json;charset=utf-8" header, but no "Content-Type: application/json" header. Therefore the server was unable to interpret the body payload and threw the, admittedly ambiguous, error below:
{ "error": "IncompleteRequestBody", "description": "The request body is either missing or incomplete", "debug": "The body of the request is missing credentials required to login" }
So the resolution is: As documented, always include the Content-Type header in order for the server to be able to interpret the request.
Mihai Grigorescu
Hi,
I'm trying to execute a login via PostMan but seem to hit a barrier .
I get an error that I'm missing data from body but the body contains what it needs and when I add a kinvey api version header i just don't get a response.
Meanwhile the api on the angular ionic api version works fine.
Could someone explain what I'm missing?
Thanks,
Mihai