简体   繁体   中英

Valid JavaScript API Domain for linkedIn to use in Chrome extension

What should be a better way to specify a valid SDK domain for LinkedIn Oauth while using it in your Chrome extension?

I am trying implement LinkedIn Oauth in my chrome extension and got confused because chrome extension it completely different environment than a simple web application. Don't what should be callbacks functions.

If anyone has done linked Oauth with Chrome extension then please share your experience.

If you're using chrome.identity API to handle OAuth, then you can specify

https://<extension-id>.chromiumapp.org/<anything-here>

as your callback URL. Note that no network request will actually go to that address - it'll be automatically intercepted in your extension. See the Non-Google account authentication guide in the docs.


Note that this potentially involves putting your secret API keys inside the extension. If you want to avoid that, you'll need to set up your own server to handle it for you (and not use chrome.identity ).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM