This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Connect and fetch Salesforce data via OAuth | |
*/ | |
function queryDataFromSalesforce() { | |
// Read OAuth consumer key / secret of this client app from script properties, | |
// which can be issued from Salesforce's remote access setting in advance. | |
var sfConsumerKey = ScriptProperties.getProperty("sfConsumerKey"); | |
var sfConsumerSecret = ScriptProperties.getProperty("sfConsumerSecret"); | |
if (!sfConsumerKey || !sfConsumerSecret) { | |
Browser.msgBox("Register Salesforce OAuth Consumer Key and Secret in Script Properties"); | |
return; | |
} | |
// Register new OAuth service, named "salesforce" | |
// For OAuth endpoint information, see help doc in Salesforce. | |
// https://na7.salesforce.com/help/doc/en/remoteaccess_oauth_1_flows.htm | |
var oauth = UrlFetchApp.addOAuthService("salesforce"); | |
oauth.setAccessTokenUrl("https://login.salesforce.com/_nc_external/system/security/oauth/AccessTokenHandler"); | |
oauth.setRequestTokenUrl("https://login.salesforce.com/_nc_external/system/security/oauth/RequestTokenHandler"); | |
oauth.setAuthorizationUrl("https://login.salesforce.com/setup/secur/RemoteAccessAuthorizationPage.apexp?oauth_consumer_key="+encodeURIComponent(sfConsumerKey)); | |
oauth.setConsumerKey(sfConsumerKey); | |
oauth.setConsumerSecret(sfConsumerSecret); | |
// Convert OAuth1 access token to Salesforce sessionId (mostly equivalent to OAuth2 access token) | |
var sessionLoginUrl = "https://login.salesforce.com/services/OAuth/u/21.0"; | |
var options = { method : "POST", oAuthServiceName : "salesforce", oAuthUseToken : "always" }; | |
var result = UrlFetchApp.fetch(sessionLoginUrl, options); | |
var txt = result.getContentText(); | |
var accessToken = txt.match(/<sessionId>([^<]+)/)[1]; | |
var serverUrl = txt.match(/<serverUrl>([^<]+)/)[1]; | |
var instanceUrl = serverUrl.match(/^https?:\/\/[^\/]+/)[0]; | |
// Query account data from Salesforce, using REST API with OAuth2 access token. | |
var fields = "Id,Name,Type,BillingState,BillingCity,BillingStreet"; | |
var soql = "SELECT "+fields+" FROM Account LIMIT 100"; | |
var queryUrl = instanceUrl + "/services/data/v21.0/query?q="+encodeURIComponent(soql); | |
var response = UrlFetchApp.fetch(queryUrl, { method : "GET", headers : { "Authorization" : "OAuth "+accessToken } }); | |
var queryResult = Utilities.jsonParse(response.getContentText()); | |
// Render query result to Spreadsheet | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
sheet.clear(); | |
sheet.setFrozenRows(1); | |
// Render all field names in header row. | |
var cell = sheet.getRange('a1'); | |
fields = fields.split(','); | |
fields.forEach(function(field, j){ cell.offset(0, j).setValue(field) }) | |
// Render result records into cells | |
queryResult.records.forEach(function(record, i) { | |
fields.forEach(function(field, j) { cell.offset(i+1, j).setValue(record[field]) }); | |
}); | |
} |
Run "queryDataFromSalesforce" function from script editor.
8 comments:
Shinichi,
Thanks for putting this together. It seems like this script require a 2-Legged OAuth Token. How would I modify it to make use of 3-Legged OAuth in SF?
Thanks,
Saqib
Thanks for share..
I have a problem...It shows a error "Unexpected error" on that line
"var result = UrlFetchApp.fetch(sessionLoginUrl, options);"
What may be problem ?
The instructions should clarify which Salesforce Editions the code can interact with.
Most people may not be familiar with API calls; where the API calls are only valid for Salesforce Enterprise + Unlimited editions.
For clarification on editions, see http://www.sfdcstatic.com/assets/pdf/datasheets/DS_SalesCloud_EdCompare.pdf
--
Otto
http://www.ottograjeda.com
BTW:
The code does work for the developer edition of Salesforce aka Force.com;
users can register for a free developer account at this link to test the
OAuth code (it works!).
http://www.developerforce.com/events/regular/registration.php
--
Otto
http://www.ottograjeda.com
Could not make it work with a multiple objects. I am trying to get fields from Account and Account owners (user object). Nothing wrong with the query. But I get 'unknown' for attributes from user object. Any idea?
Could not make it work with a multiple objects. I am trying to get fields from Account and Account owners (user object). Nothing wrong with the query. But I get 'unknown' for attributes from user object. Any idea?
this code may be work but i don't know how to create oauth consumer key and secret key so display error like oauth error without any error code and line number...
so can anybody tell me how to generate it to communicate with salesforce...
thanks
vimal makwana
I successfully connected to salesforce and fetching records , the same function i have configured as trigger.
If i ran manually ran it is asking me to authorize where i am entering salesforce credentails. after it is returning with the restuls.
But if the triggered trigger is not able to run successful might be it is losting the session.
if i again manually ran the trigger from google script it is excecuing success.
how should i overcome this problem
Post a Comment