You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
# User Authentication [GET v6/auth]
Logins an a user and gives them an accesss token
+ Request (application/json)
{
"username": "[email protected]",
"password": "test"
}
+ Response 200 (application/json)
{
"access_token": "RandomStringForAuth"
}
Will not get parsed as a test and this fails silently so you don't know why. Where it's clearly the lack of a in the URL. Took me a while to find out the issue.
The text was updated successfully, but these errors were encountered:
Thanks for the report! I think this should be handled by the API Blueprint parser, Drafter. IMHO similar issue to apiaryio/drafter#350. I'll file a corresponding issue there.
Will not get parsed as a test and this fails silently so you don't know why. Where it's clearly the lack of a in the URL. Took me a while to find out the issue.
The text was updated successfully, but these errors were encountered: