zoukankan      html  css  js  c++  java
  • salesforce rest api 登录 | Authenticating to Salesforce using REST, OAuth 2.0 and Java

    This tutorial will show you how you can authenticate to Salesforce using RESTful services.

    Configure remote access in Salesforce

     

    The first thing to do is to allow external applications to connect to Salesforce. External applications will be recognized by two values - client_id and client_secret. In order to generate them, go to Setup | Develop | Remote Access. On the list of Remote Access Applications, click New to create an entry for your external app.

     

    Fill in the form with proper values - they can be whatever you like. We will be using a username and password scenario in OAuth, so the Callback URL field can also have any value whatsoever.

     

    Once you're done filling the form, click "Save". A screen will show up with details of your application. On the bottom of the page there is a section called "Authentication", and there you can find the values of client_id and client_secret which will be of interest to us in the later part of the tutorial.

    Calling the login service with REST

     

    In order to obtain an access token, we will send an HTTP POST request to the authentication endpoint exposed by Salesforce. If you are using your production organization, the endpoint's address will be:

    https://login.salesforce.com/services/oauth2/token

     

    If you are connecting to a developer sandbox, use:

    https://test.salesforce.com/services/oauth2/token

     

    The complete code to send to request is:

    PostMethod method = new PostMethod("https://login.salesforce.com/services/oauth2/token");

     

    HttpMethodParams params = new HttpMethodParams();

     

    StringBuilder content = new StringBuilder();

    content.append("grant_type=password");

    content.append("&client_id=3MVG9Oe4hdf8GWcfWYDdPoXK9xISTe9ncGDrqkQSLfUqYfnAOnpeAoxXBub8Fn0hH_ZEBo5bwXXy");

    content.append("&client_secret=24953483493483500");

    content.append("&username=user@domain.com");

    content.append("&password=<password><security-token>");

     

    method.setRequestEntity(new StringRequestEntity(content.toString(), "text/plain", "UTF-8"));

    method.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

     

    HttpClient client = new HttpClient();

    client.executeMethod(method);

     

    One thing to remember is that the parameter password is in fact a concatenated value of your password and your security token. It is also essential to set the Content-Type of the request to application/x-www-form-urlencoded.

     

    As a result of this call you should obtain the following response:

    {

    "id":"https://login.salesforce.com/id/00D50000000IZ32WKW/00550000001fjHSwW",

    "issued_at":"1296458209517",

    "refresh_token":"5Aep862eWO5D.7wJBuW5aaARbbxsdjU3qi59o1du7ob.lp23ba_3jMRnbFNT5R8X2GUKNA==",

    "instance_url":"https://na5.salesforce.com",

    "signature":"0/1Ldval/TIPf2tTdJsjkksdkI3899G",

    "access_token":"00D50000000IZ3Z!AQ0AQtusBGG9eRLza8jXWoW7uA9dEi8eRiuitljncKYsn7ioKug2aSmgCjgrPj1QdDpED0V39rvQaIy1FGxjFHN1ZQ1Z2KSV"

    }

     

    You are authenticated. To authorize your calls, use the access_token value received in the response.

     

     

     

    http://wordgraphs.com/post/853

  • 相关阅读:
    树套树+【UVALive】6709 Mosaic 二维线段树
    汇编实验1. 计算1+2+3+…+10,将结果显示在屏幕上。4
    Tinkoff Internship Warmup Round 2018 and Codeforces Round #475 (Div. 2) D. Destruction of a Tree
    HDU 4417 Super Mario主席树
    spoj+B
    2018-2019赛季多校联合新生训练赛第五场(2018/12/14)补题题解
    迷宫问题 POJ
    浅谈二分搜索与二分查找
    Moving Tables POJ
    Humidex POJ
  • 原文地址:https://www.cnblogs.com/yqskj/p/3135655.html
Copyright © 2011-2022 走看看