forked from FoundKeyGang/FoundKey
[Server] Fix bug
This commit is contained in:
parent
728bbb658e
commit
6f7cf99f19
1 changed files with 14 additions and 12 deletions
|
@ -3,17 +3,19 @@ import * as express from 'express';
|
|||
const Twitter = require('twitter');
|
||||
import config from '../../../conf';
|
||||
|
||||
const client = new Twitter({
|
||||
consumer_key: config.twitter.consumer_key,
|
||||
consumer_secret: config.twitter.consumer_secret
|
||||
});
|
||||
|
||||
module.exports = (req: express.Request, res: express.Response) => {
|
||||
client.post('oauth/request_token', {
|
||||
oauth_callback: config.url + '/tw/cb'
|
||||
}, (x, y, z) => {
|
||||
console.log(x);
|
||||
console.log(y);
|
||||
console.log(z);
|
||||
});
|
||||
if (config.twitter) {
|
||||
const client = new Twitter({
|
||||
consumer_key: config.twitter.consumer_key,
|
||||
consumer_secret: config.twitter.consumer_secret
|
||||
});
|
||||
|
||||
client.post('oauth/request_token', {
|
||||
oauth_callback: config.url + '/tw/cb'
|
||||
}, (x, y, z) => {
|
||||
console.log(x);
|
||||
console.log(y);
|
||||
console.log(z);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue