The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
28 views

Outbound OAuth callbacks

We are in the process of implementing an outbound OAuth integration to a third party app. Our customers will, from our managed package, OAuth authenticate to the third party app and we will then use ...
3
votes
0answers
50 views

How do I get the user details when authenticating with OAuth 2.0?

I am using DotNetOpenAuth libraries to implement OAuth 2.0 client side to communicate with SalesForce authorization server. I have finished first two steps of OAuth 2.0 communication that ends with ...
4
votes
1answer
91 views

Hiding OAuth Callback URL Parameters

I am trying to recreate user experience of the login functionality found at https://workbench.developerforce.com/login.php. I believe it is utilizing the OAuth Web Server Authentication Flow as shown ...
0
votes
0answers
71 views

invalid_grant-expired access/refresh token

I'm facing a strange scenario - I'm using a REST Client to authenticate access to SF. I'm using "grant_type": "password" the client key, client secret, username and password concatenated with the ...
3
votes
3answers
80 views

accessing the Streaming API from a public-facing Force.com Site

I've got a telemetry application for which the Streaming API would be extremely useful. However I want the subscriptions to be publicly accessible. (So that anyone with the client can waltz up and ...
1
vote
1answer
51 views

OAuth scope requirements for whitelisted ISV REST API

I'm looking at building some additional integration between salesforce and a third party server as part of an ISV project, working across all editions including group and professional. Currently the ...
1
vote
2answers
73 views

Why is refresh_token only returned in particular cases using OAuth?

I'm working on putting together a quick integration using OAuth, and stubbed out a POC in one Salesforce public Site that authenticates against another. Everything seems to work fine, except I don't ...
2
votes
1answer
90 views

SOAP API - No operation available for request

I am trying to access Salesforce via the SOAP API (at the moment just using the python requests library). I have a developer account. I am trying to use an existing OAuth access token as described in ...
4
votes
1answer
128 views

Salesforce Developer Workbench Hosted Version OAuth Error - Remote Access Authorization Error

On attempting to log in to the hosted Workbench site https://workbench.developerforce.com with my force.com credentials, I am constantly getting an error that seems to be OAuth flow related. But I am ...
2
votes
1answer
91 views

OAuth API doesn't send refresh token with custom redirect_uri

If I put this link in my web browser (I put them on separate lines for readability): https://login.salesforce.com/services/oauth2/authorize ?response_type=token &client_id=MY_CONSUMER_KEY ...
1
vote
1answer
29 views

oAuth returning “Data Not Available” screen in sandbox for latest release

As the latest release rolled out we have been unable to connect to our sandbox environment via oAuth. The application login logic has been untouched in months and the keys stored in production are as ...
2
votes
1answer
83 views

Connect to Salesforce from desktop application with oauth

I am writing an extension for an email client that will integrate emails and contacts from Salesforce. It looks like the correct way to do the oauth thing will be using the User-Agent Flow method. ...
4
votes
2answers
701 views

OAuth 2.0 Username-Password Flow Problem - unsupported_grant_type

I am trying to implement OAuth 2.0 Username-Password Flow and below is my code and debug log - any help is appreciated. Http httpProtocol = new Http(); HttpRequest request = new HttpRequest(); ...
0
votes
2answers
97 views

Determine login URL for current org

As part of my OAuth2 flow, I need to determine the login URL for the current session from my Apex class. In order to "Redirect User to Obtain Access Authorization", I have to know whether I should be ...
2
votes
1answer
108 views

Not getting a refresh_token after switching to Connected Apps

I recently moved my codebase onto a new development org, and had to switch from "Remote Access" configuration to "Connected Apps" for my OAuth2 Web Services flow. After getting everything set up, I ...
5
votes
2answers
176 views

Is it possible to store and reuse a refresh token ad infinitum?

I want to be able to insert records into a custom object on behalf of users from my web app without their direct involvement aside from their initial granting my app permission to do so. The events ...
4
votes
1answer
639 views

How to publish a connected app (the replacement for Remote Access settings)

So I am trying to setup a remote access piece for using OAuth for a rails app. Remote Access in this org seems to have been removed and replaced by the new Connected Apps feature. When I create a ...