oauth2-salesforce
oauth2-salesforce copied to clipboard
Salesforce Provider for the OAuth 2.0 Client
Expand documentation on token generation. See Issue #14
Throw `IdentityProviderException` with correct error message. Reference: [OAuth 2.0 Authorization Errors](https://help.salesforce.com/articleView?id=remoteaccess_oauth_flow_errors.htm&type=5)
I am calling the OAuth function and getting a successful access token. However, when using the `->getRefreshToken()` function, I am not getting anything back and it is coming back null....
As per the SalesForce [documentation](https://developer.salesforce.com/page/Digging_Deeper_into_OAuth_2.0_on_Force.com) on OAuth their replies always contain an `issued_at` field telling you when the token was issued. We use this field internally in our application so...
Hello, Is It possible to get a new access token by refresh token when user is offline ?
It's possible to use this library for the Salesforces API, I'm trying to authenticate using `POST /oauth/token HTTP/1.1 Host: api.socialstudio.radian6.com Cache-Control: no-cache Content-Type: application/x-www-form-urlencoded grant_type=password&client_id={clientKey}&client_secret={clientSecret}&username={username}&password={password}` Thank you advance.