mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
[Server] Misskey API server is now accept a JSON as well as a application/x-www-form-urlencoded
Related to #154
This commit is contained in:
parent
7d1983470d
commit
1894e9052a
@ -18,6 +18,7 @@ const app = express();
|
|||||||
app.disable('x-powered-by');
|
app.disable('x-powered-by');
|
||||||
app.set('etag', false);
|
app.set('etag', false);
|
||||||
app.use(bodyParser.urlencoded({ extended: true }));
|
app.use(bodyParser.urlencoded({ extended: true }));
|
||||||
|
app.use(bodyParser.json());
|
||||||
app.use(cors({
|
app.use(cors({
|
||||||
origin: true
|
origin: true
|
||||||
}));
|
}));
|
||||||
|
Loading…
Reference in New Issue
Block a user