I'm using Doorkeeper for my Rails provider. My Chrome extension should implement Oauth to my provider. When I generate a new application in the provider I need to give the callback URL, what is the Chrome extension URL for that callback?
Thanks.
I'm using Doorkeeper for my Rails provider. My Chrome extension should implement Oauth to my provider. When I generate a new application in the provider I need to give the callback URL, what is the Chrome extension URL for that callback?
Thanks.
Copyright © 2021 Jogjafile Inc.
You might want to use chrome.identity API wherein
getRedirectURL
method generates a redirect URL to be used inlaunchWebAuthFlow
method.The generated URLs match the pattern
https://<app-id>.chromiumapp.org/*
.This thread might also help.