We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to receive an access_token from the code received via response_url. The yampy module responds with HTTP 400 Bad Request
import yampy code = request.GET['code'] authenticator = yampy.Authenticator( client_id='MY_KEY', client_secret='MY_SECRET' ) access_token = authenticator.fetch_access_token(code)
Use post instead of get https://developer.yammer.com/docs/oauth-2
def fetch_access_data(self, code): [...] return client.post( path="/access_token", client_id=self._client_id, client_secret=self._client_secret, code=code, )
The text was updated successfully, but these errors were encountered:
post instead of get does not solve the issue on my computer :-(
Sorry, something went wrong.
No branches or pull requests
When trying to receive an access_token from the code received via response_url. The yampy module responds with HTTP 400 Bad Request
How to reproduce
How to fix
Use post instead of get
https://developer.yammer.com/docs/oauth-2
The text was updated successfully, but these errors were encountered: