We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the Twitter IDs,
Each object within Twitter - a Tweet, Direct Message, User, List, and so on - has a unique ID.
Twitter IDs are unique 64-bit unsigned integers that are generated by Snowflake.
Snowflake
The IDs in response from api.tweet_details should be represented as strings by default or with a conrecponse field suffix with _str,
api.tweet_details
_str
{ ... "conversationId":1751817528785936384, + "conversationId_str":"1751817528785936414", "inReplyToTweetId":1751817528785936384, + "inReplyToTweetId_str":"1751817528785936414", "inReplyToUser":{ ... "id":1486473049146904576, + "id_str":"1486473049146904576" }, "mentionedUsers":[ { ... "id":1486473049146904576, + "id_str":"1486473049146904576" } ], ... }
The text was updated successfully, but these errors were encountered:
add missing string id representation to models #116
277ebd1
@linxux should be fixed in v0.11.
Thank you!
Sorry, something went wrong.
No branches or pull requests
According to the Twitter IDs,
Twitter IDs are unique 64-bit unsigned integers that are generated by
Snowflake
.The IDs in response from
api.tweet_details
should be represented as strings by default or with a conrecponse field suffix with_str
,The text was updated successfully, but these errors were encountered: