导演:未知
主演:凯瑟琳·哈恩 萨拉·皮金 梅里特·韦弗 约翰尼·贝希托尔德 伊丽
关键词:剧情 喜剧
1月16日,由ReeseWitherspoon和LauraDern开发,KathrynHahn主演,LizTigelaar主创的《微小美丽的事物》(简称《微小》
1月16日,由ReeseWitherspoon和LauraDern开发,KathrynHahn主演,LizTigelaar主创的《微小美丽的事物》(简称《微小》)在Hulu正式获得8集订制,这一开发历时7年。该剧改编自CherylStrayed的同名畅销书,讲述了Cheryl与她的老公一起改编这部书籍的故事。2012年上市后,该书很快就登上《纽约时报》畅销书榜,在其中,Cheryl在称“Sugar”的笔名下回答名为“DearSugar”的网站读者的问题,并分享她自己关于爱、成长和生活的见解。《微小》原本由HBO开发,但最终没有下文。如今,Hulu的加入,为这本书的改编带来全新的起点。"
truncated: false
entities: Object { urls: (1) […], mediaUrls: (0) [], userMentions: (4) […], … }
isPinned: false
isReplyTo: false
isRetweet: false
isQuote: false
isVideo: false
quotedTweet: Object { url: false }
retweetCount: 1
repliesCount: 0
date: Date 2020-01-30T14:27:00.000Z
},
```
#### 3. streamTweets
```jsx
/**
* Stream Tweets
* @param {number} interval - Stream frequency in milliseconds
* @param {(string|number)} sinceId - Get tweets with id greater than this
* @param {(string|number)} maxId - Get tweets with id smaller than this
* @param {Object} query - The query parameters object documented here: https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets
* @param {(string|number)} query.q - Search query
* @param {('mixed'|'recent'|'popular')} query.result_type - Shows tweets for the given set of conditions. 'mixed' includes both popular and real time results in the response. 'recent' returns only the most recent results in the response. 'popular' returns only the most popular results in the response.
* @param {(string|number)} query.count - Max results
* @param {(string|number)} query.lang - Language
* @param {(string|number)} query.locale - Specify the language of the query you are sending. Only "ja" is currently effective. This is intended for language-specific consumers and the default should work in the majority of cases.
* @param {(string|number)} query.sinceId - Get tweets with id greater than this
* @param {(string|number)} query.maxId - Get tweets with id smaller than this
* @param {(string|number)} query.until - Before date
* @param {(string|number)} query.since - After date
* @param {Function} callback - Callback to call when a new tweet is streamed
* @param {Function} onReady - Callback to call when the stream is ready
* @param {Function} onError - Callback to call when the stream is closed with error
* @return {Object} interval - Returns the stream interval
*/
```
##### example
```jsx
import { streamTweets } from 'twit-tw';
// Update the 'count' and 'q' property according to available search parameters here: https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets
const stream = streamTweets({
interval: 60000, // in ms
query: {
q: '#BernieSanders OR #JoeBiden OR #ElizabethWarren OR #PeteButtigieg OR #KamalaHarris OR #AmyKlobuchar OR #CoryBooker OR #KirstenGillibrand OR #JohnDelaney OR #JulianCastro OR #TulsiGabbard OR #MarianneWilliamson OR #AndrewYang',
result_type: 'popular', // mixed, recent, popular
count: 1, // Max number of results per request
lang: 'en', // Default en
locale: 'en' // Default en
},
callback: () => {
// when a tweet is streamed
// put your code here
},
onReady: () => {
// when the stream is ready
// put your code here
},
onError: () => {
//
详情
更多影视:
影林影视