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
).