当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript twit.post函数代码示例

本文整理汇总了TypeScript中twit.post函数的典型用法代码示例。如果您正苦于以下问题:TypeScript post函数的具体用法?TypeScript post怎么用?TypeScript post使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了post函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: post

 post(path: string, params: Object, cb: (ret: any) => void) {
     this.client.post(path, params, (err, ret, res) => {
         if (err) {
             this.sendApiFailure(err, res);
             return;
         }
         cb(ret);
     });
 }
开发者ID:DevenLu,项目名称:YourFukurou,代码行数:9,代码来源:twitter.ts

示例2: tweet

        public tweet(message: string) {
            var message = '@' + this._atUser + ' ' + message;
            message = message.substr(0, 140);

            this._twit.post('statuses/update', { status: message }, (err, data, response) => {
                if (!err) {
                    console.log('Message tweeted @' + this._atUser);
                } else {
                    console.log(err);
                }
            });
        }
开发者ID:mtgibbs,项目名称:NodeWebScraper,代码行数:12,代码来源:TwitWrapper.ts

示例3: tweetImage

export default async function tweetImage(logger: Logger) {
  try {
    const { fileName, file } = await getRandomPicture();

    const b64Picture = file.toString('base64');
    const uploadedPicture = await t.post('media/upload', {
      stringify_ids: true,
      media_data: b64Picture,
    });
    const mediaParams = {
      stringify_ids: true,
      // @ts-ignore
      media_id: uploadedPicture.data.media_id_string,
      alt_text,
    };

    await t.post('media/metadata/create', mediaParams);
    const tweet = await t.post('statuses/update', {
      stringify_ids: true,
      status: config.twitter.tweetMessage,
      // @ts-ignore
      media_ids: [uploadedPicture.data.media_id_string],
    });

    logger.info({
      status: config.twitter.tweetMessage,
      // @ts-ignore
      mediaIds: uploadedPicture.data.media_id_string,
      image: fileName,
      // @ts-ignore
      tweet: tweet.data.id_str,
    });
  } catch (e) {
    logger.error(e);
  }
}
开发者ID:marudor,项目名称:randomCats,代码行数:36,代码来源:twitter.ts

示例4: updateStatus

 updateStatus(text: string, in_reply_to?: string) {
     const params = {
         status: text,
         in_reply_to_status_id: undefined as string,
         trim_user: false,
     };
     if (in_reply_to) {
         params.in_reply_to_status_id = in_reply_to;
     }
     this.client.post('statuses/update', params, (err, tweet, res) => {
         if (err) {
             this.sendApiFailure(err, res);
             return;
         }
         this.sender.send('yf:update-status-success', tweet);
         log.debug('Status update success:', tweet.id);
     });
 }
开发者ID:DevenLu,项目名称:YourFukurou,代码行数:18,代码来源:twitter.ts

示例5: Twit

import * as Twit from 'twit';

const t = new Twit( {
  consumer_key: '',
  consumer_secret: '',
  app_only_auth: true,
} );

t.post('statuses/update', { status: 'hello!' }).then(res => {
    const status = res.data as Twit.Twitter.Status
    console.log(status.id_str)
    console.log(res.resp.statusCode)
})
开发者ID:Engineer2B,项目名称:DefinitelyTyped,代码行数:13,代码来源:twit-tests.ts


注:本文中的twit.post函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。