Google Script oAuth + Odesk API

时间:2013-11-03 20:45:55

标签: api oauth google-apps-script google-oauth api-key

嗨,我一直在使用oDesk API很长时间,但现在我需要授权来获取一些数据,但我无法弄明白。这是我正在使用的代码并获得oAuth错误。如果你有所了解,你的帮助将非常有用。

function debug() {
    var oAuthConfig = UrlFetchApp.addOAuthService("odeskapi");
    oAuthConfig.setConsumerKey("xxxxxxxxxxxxxxxxxxxxxxxxxxxx");
    oAuthConfig.setConsumerSecret("xxxxxxxxxxxx");
    oAuthConfig.setRequestTokenUrl("https://www.odesk.com/api/auth/v1/oauth/token/request");
    oAuthConfig.setAccessTokenUrl("https://www.odesk.com/api/auth/v1/oauth/token/access");
    oAuthConfig.setAuthorizationUrl("https://www.odesk.com/services/api/auth");

    var options = {
        "method" : "GET",
        "oAuthServiceName" : "odeskapi",
        "oAuthUseToken" : "always"
    };

    var request = UrlFetchApp.fetch("https://www.odesk.com/api/profiles/v1/search/jobs.json", options);
}

1 个答案:

答案 0 :(得分:0)

oAuthConfig.setMethod("post");