I am trying to use Google APPScript in Google Spreadsheets and have an OAuth issues. The Spreadsheet and Google App application are both protected by Oauth provided by Google as I am using google apps for business .
Below is the script \I am using .... It gives me the oauth dance but fails to invoke the URL and retruns with a 302 response. Not sure what to do next .. have tried setting auth call back hadler and everything but did not get far. I also have ScriptProperties being set for key and secret (not seen below). Also the scope is not set as app engine indicates that OAuth is for the entire app....
I get a 302 response at the end of this ... after Google App Engine telling me that an app is requesting access ... It also indicates that appspot.com is an external provider
var oAuthConfig = UrlFetchApp.addOAuthService("google");
oAuthConfig.setAccessTokenUrl("https://<blah>.appspot.com/_ah/OAuthGetAccessToken");
oAuthConfig.setRequestTokenUrl("https://<blah>.appspot.com/_ah/OAuthGetRequestToken");
oAuthConfig.setAuthorizationUrl("https://<blah>.appspot.com/_ah/OAuthAuthorizeToken?hd=<blah.com>");
oAuthConfig.setConsumerKey(consumer_key);
oAuthConfig.setConsumerSecret(consumer_secret);
var requestData = {
"method": "GET",
"oAuthServiceName": "google",
"oAuthUseToken": "always"
};
var response = UrlFetchApp.fetch(url, requestData);