function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SubbuSubbu 

How to pass Values dynamically in REST API from one org to another with Oauth Authentication

I created a resource to insert an Account record with fields- Name and Description in SF1(say), and i want to send the values from another instance SF2(say) using REST API from URL parameters.

I created one VF page with fields Name and Description. when i entered Name and Description fields respectively they should go to contoller dynamically and create the record in resource instance.

Target Org :

User-added image


@RestResource(urlMapping='/Account/*')
global with sharing class MyRestResource {
  
  @HttpPost
    global static String doPost(String name,String phone, String website) {
        Account account = new Account();
        account.Name = name;
        account.phone = phone;
        account.website = website;
        insert account;
        return account.Id;
    }
}

Source Org :

User-added image
Controller :


public class ApexController {
    
    public String response{get;set;}
    public String accName{get;set;}
    public String accPhone{get;set;}
    public String accWebsite{get;set;}
    
    public PageReference CreateAccount() {
        //find access token using Auth 2.0 
        String Access_Token='3MVG9fMtCkV6eLheWOt4w544Nluwm1zx0HUAFGdCpPoWBGVOQv2K2fD7t8XotR3c9OE2bIHuXOhRv.ZEzjHYNI';
        Httprequest req=new httprequest();
        String domainName='subbuorg2-dev-ed.my.salesforce.com';
        String endPointURL='https://'+domainName+'/services/data/v27.0/sobjects/Account';
        req.setendpoint(endPointURL);
        req.setHeader('Content-Type', 'application/xml; charset=utf-8');
        req.setBody('<?xml version="1.0" encoding="UTF-8" ?><request><name>'+accName+'</name><phone>'+accPhone+'</phone><website >'+accWebsite+'</website > </request>');
        req.setmethod('POST');
        req.setHeader('Authorization','Authorization: Bearer '+Access_Token);
        Http http = new Http();
        HTTPResponse res = http.send(req);
        response=res.getbody();
        System.debug('****************res.getStatusCode();'+res.getStatusCode());
        System.debug('****************res.getbody();'+res.getbody());
        return null;
    }
}


Visualforce Page ;

<apex:page controller="ApexController">
<apex:form >
    <apex:pageBlock >
        <apex:pageBlockButtons >
            <apex:commandButton value="Create Account in SF1 instance" action="{!CreateAccount}"/>
        </apex:pageBlockButtons>
        <apex:pageBlockSection >
            <apex:pageBlockSectionItem >
                <apex:outputLabel for="aname" value="Name"></apex:outputLabel>
                <apex:inputText value="{!accName}" id="aname"/>
            </apex:pageBlockSectionItem>
            <apex:pageBlockSectionItem >
                <apex:outputLabel for="aphone" value="Phone"></apex:outputLabel>
                <apex:inputText value="{!accPhone}" id="aphone"/>
            </apex:pageBlockSectionItem>
            <apex:pageBlockSectionItem >
                <apex:outputLabel for="aw" value="Website"></apex:outputLabel>
                <apex:inputText value="{!accWebsite}" id="aw"/>
            </apex:pageBlockSectionItem>
        </apex:pageBlockSection>
    </apex:pageBlock>
    
    <apex:pageBlock title="Response">
        <apex:pageBlockSection >
            <apex:outputText value="{!Response}"></apex:outputText>
        </apex:pageBlockSection>
    </apex:pageBlock>
</apex:form>
</apex:page>


I am getting below error


User-added image


Could you please explain about Access_token ,I think issue with Access_token Plz correct......


Is it combination of  Consumer Key + Consumer secret + security token

 
Thakns in Advance
Subbu


 
NagendraNagendra (Salesforce Developers) 
Hi Subbu,

Replace end point URL assignment in HTTP request with below code:
String endPointURL='https://subbuorg2-dev-ed.my.salesforce.com/services/data/v27.0/sobjects/Account';

I am assuming subbuorg2-dev-ed.my.salesforce.com is domain name of org for which you want access token.

If this also didn't work, it means there is issue with access token that you have specified.

In the endpoint URL you are not specifying the domain name,which might cause the issue.


Consumer key is different than Access token. Refer below URL to understand how to generate Access_Token. Once you get access_token, then you can use it in HTTP Request.

                                                   (OR)

You can use session id of User logged into SF instance 2  in HTTP Request.

Use
string sessionid='XXXXXXXXXXXXXXXXXXXX';//sessionId of user logged into SF instance 2
req.setHeader('Authorization', 'Bearer ' +sessionid);
instead of 
req.setHeader('Authorization','Authorization: Bearer '+Access_Token);

Hope this will help you.
SubbuSubbu
Hi Narendra,

I tried above one but no luck, I am getting same error 

[{"message":"Session expired or invalid","errorCode":"INVALID_SESSION_ID"}]

Please help me any one  how to solve this issue