Skip to content
Snippets Groups Projects
Commit 44b6ddb2 authored by syuilo's avatar syuilo
Browse files

Fix bug

parent 48822506
No related merge requests found
......@@ -9,7 +9,9 @@ const client = new Twitter({
});
module.exports = (req: express.Request, res: express.Response) => {
client.post('oauth/request_token', (x, y, z) => {
client.post('oauth/request_token', {
oauth_callback: config.url + '/tw/cb'
}, (x, y, z) => {
console.log(x);
console.log(y);
console.log(z);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment