首页 > 解决方案 > 使用带有 StackExchange API 和 Apps 脚本的 OAuth 进行授权时遇到问题

问题描述

我正在尝试使用 Google Apps 脚本中的 OAuth 访问 StackExchange API。我正在使用这个库

当我打电话给下面时,我一开始没有访问权限(这是预期的)。我登录的授权 URL 是:

https://stackoverflow.com/oauth?client_id=14205&response_type=code&redirect_uri={URI}&state={STATE}&scope=read_inbox 

将 autorizationURL 粘贴到我的浏览器中,我得到如下页面:

"Error: Token response not valid JSON: SyntaxError: Unexpected token: a (line 532, file "Service", project "OAuth2")"

我从 Apps 脚本运行的内容:

function getMentions() {
   var service = getStackExchangeService_();
   Logger.log(service.hasAccess());
   if (service.hasAccess()) {

     //get token and call API
   }
   else {
   Logger.log("App has no access yet.");

   // open this url to gain authorization from Stack Exchange
   var authorizationUrl = service.getAuthorizationUrl();

   Logger.log("Open the following URL and re-run the script: %s",
     authorizationUrl);
   }
 }

我的 Oauth.gs 页面:

function getStackExchangeService_() {
  var CLIENT_ID = PropertiesService.getScriptProperties().getProperty('SE_CLIENT_ID');
  var CLIENT_SECRET = PropertiesService.getScriptProperties().getProperty('SE_CLIENT_SECRET');

  return OAuth2.createService('StackExchange')
  .setAuthorizationBaseUrl('https://stackoverflow.com/oauth')
  .setTokenUrl('https://stackoverflow.com/oauth/access_token')
  .setClientId(CLIENT_ID)
  .setClientSecret(CLIENT_SECRET)
  .setCallbackFunction('authCallbackSE')
  .setPropertyStore(PropertiesService.getUserProperties())
  .setRedirectUri('https://script.google.com/macros/d/{SCRIPT ID}/usercallback')
  .setScope('read_inbox');
}

function authCallbackSE(request) {
  var SEService = getStackExchangeService_();
  var isAuthorized = SEService.handleCallback(request);
  if (isAuthorized) {
    return HtmlService.createHtmlOutput('Success! You can close this tab.');
  } else {
    return HtmlService.createHtmlOutput('Denied. You can close this tab');
  }
}

不清楚我哪里出错了,但我认为当我输入授权 URL 时我应该被重定向到授权页面。谢谢!

标签: google-apps-scriptoauthoauth-2.0stackexchange-api

解决方案


问题:

Stackexchange API,默认发送访问令牌application/x-www-form-urlencoded,OAuth2 库的 tokenFormat 默认需要 JSON。

解决方案:

  • https://stackoverflow.com/oauth/access_token/json通过将 tokenUrl 设置为OR来显式请求 JSON 的 api

  • 在 OAuth2 库中显式设置 tokenFormat 以形成使用编码的 urlsetTokenFormat(TOKEN_FORMAT.FORM_URL_ENCODED)

参考:


推荐阅读