Home>
I hit the API using Postman
I can get tweets for a single user without any problems.
If i specify multiple users"code": 32, "message": "Could not authenticate you."
Will come out.
The URL is percent encoded.
(&→% 2C)
User_name of the tweet I want to get
・ Aaaa123
・ Xxx0000
Will be.
I want to get a list of tweets from multiple users.
Thank you.
// Failure
https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=aaa123%2Cxxx0000&count=10&exclude_replies=false&contributor_details=false&include_rts=true
// Success
https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=aaa123&count=10&exclude_replies=false&contributor_details=false&include_rts=true
{
"errors": [
{
"code": 32,
"message": "Could not authenticate you."
}
]
}
] (Ee3229e12ff454a9237a1ae3acd8b385.png)
-
Answer # 1
Related articles
- i can't get the url of the twitter api user's profile
- ruby - put multiple users in a room (chat room)
- twitter - how to automatically display tweets from multiple accounts on the site
- java regarding the behavior when multiple users call the same method
- what happens when multiple java users call the same method
- python - [django] i want multiple users to log in to the same site at the same time
- i want to get the timeline from twitter in python, but the instantiation of the listener class does not work
- python - get and display twitter timeline
- i want to get the twitter timeline using python, but i get an error
- python - i want to get the twitter timeline with pythou, but i get an error
- centos - how to create multiple users in ansible
- Easy language "does it support multiple users" command
- JAVA simulates multiple threads to send text messages to multiple users
- Write a Ruby script to deeply mine Twitter users' data
- Java Web Restricts Multiple Users Login Example Code
Trends
- python - you may need to restart the kernel to use updated packages error
- php - coincheck api authentication doesn't work
- php - i would like to introduce the coincheck api so that i can make payments with bitcoin on my ec site
- [php] i want to get account information using coincheck api
- the emulator process for avd pixel_2_api_29 was killed occurred when the android studio emulator was started, so i would like to
- javascript - how to check if an element exists in puppeteer
- dart - flutter: the instance member'stars' can't be accessed in an initializer error
- sh - 'apt-get' is not recognized as an internal or external command, operable program or batch file
- i want to call a child component method from a parent in vuejs
- python 3x - typeerror: 'method' object is not subscriptable
As shown below, there is only one in user_timeline.
https://developer.twitter.com/en/docs/twitter-api/v1/tweets/timelines/api-reference/get-statuses-user_timeline
please confirm.