extwitter
extwitter copied to clipboard
Twitter client library for elixir.
Hello, I have just updated some prohjects to Erlang 26 and I just noticed that extwitter is failing to connect to Twitter API since SSL changes were introduced on this...
```ExTwitter.request(:get, "2/users/by/username/")``` > no match of right hand side value: %{message: "The query parameter [oauth_signature_method] is not one of [username,expansions,tweet.fields,user.fields]", parameters: %{oauth_signature_method: ["HMAC-SHA1"]}}
How to get the last N tweets of a certain user?
What's the function for https://developer.twitter.com/en/docs/twitter-api/users/lookup/api-reference/get-users-me ? Or after I've gotten authenticated, how will I get retrieve my own user_id, username and avatar?
Updating extwitter from `0.9.6` to `0.12.0`, I found out that `ExTwitter.Model.User` no longer has an email field, I'm already calling `ExTwitter.verify_credentials(include_email: true)` so the user email field is returned but...
https://developer.twitter.com/en/docs/twitter-api/v1/tweets/filter-realtime/overview > We have deprecated the delivery of compliance messages through this endpoint. This endpoint will stop delivering compliance messages beginning October 31, 2022. https://developer.twitter.com/en/docs/twitter-api/v1/tweets/sample-realtime/overview > This endpoint is now...
The library no longer works in OTP 24 as `:crypto.hmac/3` was removed in favour over `crypto:mac/4`.
Longer tweets have a `full_text` field, but it's always `nil`. Even when under `raw_data.extended_tweet.full_text` has content (which is longer than `text`). Furthermore, `extended_tweet` was added in this issue: https://github.com/parroty/extwitter/pull/95 But...
I'm trying to get the URL of a tweet after tweeting an update with the `ExTwitter.update/1` function. Looking at the [twitter update status](https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update) example, there is a URL to the...
Since the user can select their own json library we should make the Jason dependency optional. If not Jason will always be pulled in even if the user uses a...