[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');
|
const Twitter = require('twitter');
|
||||||
import config from '../../../conf';
|
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) => {
|
module.exports = (req: express.Request, res: express.Response) => {
|
||||||
client.post('oauth/request_token', {
|
if (config.twitter) {
|
||||||
oauth_callback: config.url + '/tw/cb'
|
const client = new Twitter({
|
||||||
}, (x, y, z) => {
|
consumer_key: config.twitter.consumer_key,
|
||||||
console.log(x);
|
consumer_secret: config.twitter.consumer_secret
|
||||||
console.log(y);
|
});
|
||||||
console.log(z);
|
|
||||||
});
|
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