Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am examining a sample which is in the salesforce developer site.

In that sample when we click a link it will be redirected to the salesforce login page. If the login successful, then an access token is issued.

I dont want my application to redirect to the salesforce login page. In the existing sample the environment variable is set to,

"https://login.salesforce.com"

What should I do to avoid redirecting to salesforce login page.

share|improve this question

2 Answers

up vote 7 down vote accepted

What you're describing, sounds like OAuth (just because you mention access-token).

There's a good example of OAuth being used in Salesforce below...

http://wiki.developerforce.com/page/Digging_Deeper_into_OAuth_2.0_at_Salesforce.com

share|improve this answer
Thanks for your reply. I found that i have to use Username-Password oauth flow for my need. login.salesforce.com/help/doc/en/… => this is the link we have to refer. But although i have followed the steps my app still redirecting. :( – Easwaramoorthy Kanagaraj Feb 13 '12 at 11:58
1  
Are you following the "oauth dance" steps correctly? Remember you need 3 things, request-token-url, api-url, access-token-url. – david99world Feb 13 '12 at 12:11
1  
SOLUTION: Hi all, I have arrived the solution to my problem. Actually, I was examining the sample given in the link wiki.developerforce.com/page/… . Then implemented OAuth 2.0 Username-Password Flow which is from login.salesforce.com/help/doc/en/…. It solves my problem. Thanks for your response. – Easwaramoorthy Kanagaraj Feb 13 '12 at 13:16

SOLUTION:

Hi all, I have arrived the solution to my problem. Actually, I was examining the sample given in the link http://wiki.developerforce.com/page/Getting_Started_with_the_Force.com_REST_API . Then implemented OAuth 2.0 Username-Password Flow which is from https://login.salesforce.com/help/doc/en/remoteaccess_oauth_username_password_flow.htm#send_up_response. It solves my problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.