mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-25 10:19:06 +01:00
allow client credentials not just for tapbots
This commit is contained in:
parent
cca4156804
commit
d8fe02042c
@ -174,7 +174,7 @@ mastoRouter.post("/oauth/token", async (ctx) => {
|
|||||||
const body: any = ctx.request.body || ctx.request.query;
|
const body: any = ctx.request.body || ctx.request.query;
|
||||||
console.log('token-request', body);
|
console.log('token-request', body);
|
||||||
console.log('token-query', ctx.request.query);
|
console.log('token-query', ctx.request.query);
|
||||||
if (body.redirect_uri.startsWith('com.tapbots') && body.grant_type === 'client_credentials') {
|
if (body.grant_type === 'client_credentials') {
|
||||||
const ret = {
|
const ret = {
|
||||||
access_token: uuid(),
|
access_token: uuid(),
|
||||||
token_type: "Bearer",
|
token_type: "Bearer",
|
||||||
|
Loading…
Reference in New Issue
Block a user