Created
August 27, 2019 05:40
-
-
Save gr2m/53c346f7e9c2ee9ab9565e96a816ad44 to your computer and use it in GitHub Desktop.
A Cloudflare worker to exchange an OAuth Web Flow code for an access token. Configure your CLIENT_ID and CLIENT_SECRET and you are all set.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)) | |
}) | |
const CLIENT_ID = '<your client ID>' | |
const CLIENT_SECRET = '<your client Secret>' | |
async function handleRequest(request) { | |
if (request.method === 'GET') { | |
return new Response(`$ curl -XPOST -H'Content-Type: application/json' -d'{"code": "<your oauth code>"}' ${request.url}`) | |
} | |
const { code } = await request.json() | |
return await fetch('https://github.com/login/oauth/access_token', { | |
method: "POST", | |
headers: { | |
'content-type': "application/json", | |
accept: "application/json" | |
}, | |
body: JSON.stringify({ | |
client_id: CLIENT_ID, | |
client_secret: CLIENT_SECRET, | |
code | |
}) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment