Chrome Extension oAuth Request Redirect Page Not Loading

前端 未结 2 1584
执笔经年
执笔经年 2021-02-10 03:12

I\'m working on a Chrome Extension that interacts with Google Calendar. I\'ve open sourced it, and the code can be found on GitHub: https://github.com/joshholat/Add-to-Calendar-

相关标签:
2条回答
  • 2021-02-10 03:21

    I got it working after adding the following permissions to manifest.json

    "permissions": [
      "tabs",
      "https://www.google.com/"
    ],
    
    0 讨论(0)
  • 2021-02-10 03:28

    Make sure you are using the latest version of the Chrome OAuth sample code. I know at some point here was an update to how Chrome handled tabs and the OAuth sample got patched to work again.

    0 讨论(0)
提交回复
热议问题