Here are 4k tweets I pulled last year on the world cup refereeing if you need something for sentiment analysis now the API is shut down. There are also labelled. github.com/analyticswithadam/Python/blob/main/REF%20TWEETS.csv
Hi Adam, this tutorial was very helpful, however, after making the API call, i got an error stating that i do not have the right level of access. This is after succesfully paying for twitter basic API and changing the access keys. Can you advice on how to correctly set up the API after making the subcription,
Hi @@danielmartin3153, I think someone else in comments had the same issue. There is a guide on how to use the official Twitter API V2 here developer.twitter.com/en/docs/twitter-api/tweets/search/introduction. With a few options to get started, Postman, Python, etc. See if you get it sorted from there. I haven't paid so haven't queried in a good while
@@analyticswithadam can I use the same method now in 2024? and is your account the free one or the Basic paid ? if you can reply I will really appreciate your help. I'm stuck
The search_tweets attribute /method of tweepy library works only if you have full API v2 and not free as it require high access level, So you have to pay to Twitter for high level API key.
getting error- Status Failed On, 403 Forbidden 453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level.
I have tried this code, but it seems that I'm using the free access level, which doesn't provide the access to the search tweets feature, otherwise, I have to move to the basic access level to apply this code, right ?
It seems like this code is not working anymore. I found that only way to do 'search query' by using Twitter API v2 and you have to access basic levels or higher that mean you have to pay at least $100 / mo.
@jessehuang3046 Yeah, $100 for just playing around and testing, or just seeing what the API can do, seems like a lot of money out of pocket, to just see what it can do. Good Job ELON... Moron.
i am getting this: Status Failed On, 403 Forbidden 453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level.
Failed on, 403 Forbidden 453 - you currently have acces to a subset of Twitter API V2 Endpoint and limited V1.1 endpoints Should I apply for not free acces ?
@@raghavendraniteeshg6198 have you solve this problem? my problem is "401 Unauthorized"。 i have brought Basic level i also working my data analyst project。 could we exchange some idea about Twitter API?
If you see the code in github ive just pulled in 5 fields from the many possible you just pull another attribute tweet.location it did look like a lot of the locations were blank though from the full tweets.
Thanks Adam, really useful. I'm getting this error auth = tweepy.OAuthlUserHandler( AttributeError: module 'tweepy' has no attribute 'OAuthlUserHandler'. Did you mean: 'OAuthHandler'?
it's OAuth1UserHandler (1 instead of l) you can copy paste the below code auth = tweepy.OAuth1UserHandler(consumer_key, consumer_secret, access_token, access_token_secret) api = tweepy.API(auth)
@@analyticswithadam I'm having problems with the new tiers. i keep on getting this error: 453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level. I can't seem to find a solution
Hi All, Twitter and Reddit APIs has been cut off unless you want to pay a lot. RUclips API is still good, check out this video on how to pull comments from that ruclips.net/video/SIm2W9TtzR0/видео.html
it gives the error like ,can you update the code Status Failed On, 403 Forbidden 453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level.
I created a developers account for myself, but those keys that you are showing stay hidden. I can not copy them or access any of them except bearer's key. Any suggestions?
hi Adam. I need to get tweeter API for sentiment analysis for ONE MONTH to track tech companies' stock market. but as I know API needs to charge around 100 $. Does this tutorial work for that or not?
@@icemixpl That's a pain in the a s s. Elon is really screwing over the actual people that can help him. F-Him. $100 per month to play with his api. F-that.!
Is this method still relevant for 'X'? I'm trying to do sentiment analysis for a graduate-level research project and basically need to teach myself how to gather data from various social media in order to appropriately complete my thesis
@@analyticswithadamare there any programs/tools you’d recommend for completing such a task? Preferably free, but if I need to pay or learn some python that’s fine I suppose. I just need to be able to input a date-range, # of posts, content-topic (ex. Natural disasters) and platform (Facebook, X, Instagram) and essentially do a “mass” sentiment analysis: Produced in a way I could potentially chart on excel or at the very least be able to gauge sentiment for that range and the parameters If there aren’t any programs available, what places do you recommend I look to at least attempt to learn how to come up with a way of making this easier rather than analyzing one by one. Idk if that explanation makes sense. Also thank you for letting me know the API has changed!
@@benjamincortez8146 RUclips Comments are free, I have a few videos on how to pull those in Python or have one on trust pilot review scraping in Python.
@@benjamincortez8146 Hey there! Interesting to find someone with the same problem. :D I am at the same point and looking for ways to do a "mass" sentiment analysis on social media posts. But with another topic at focus (crypto currency markets). Maybe we can have a talk about our findings so far. Wish you the best of luck for your thesis!
I bought a basic subscription and I am still not able to fetch tweets via tweepy, please help. Please help if we still need to use the four keys or just the bearer token key is enough.
There is the Twitter API V2... I reckon you might need to go directly through that here is a code example.. Looks like the bearer token is enough.. github.com/twitterdev/Twitter-API-v2-sample-code/blob/main/Tweet-Lookup/get_tweets_with_bearer_token.py
@@analyticswithadam Hi Adam, may I request an updated video on getting tweet data please? ? I believe with the free tier for X API v2, we get to read 1,500 Posts/month.
@@harish77720 From what I see here we still cant pull tweets on the free tier developer.twitter.com/en/docs/twitter-api/getting-started/about-twitter-api
Thank you for this video. I will try the Basic subscribe to see if this works. I saw a few in the comment sections with issues. I can try to find out why the error occurs.
Let me know if this works for you/you figure out the issue please! I'm waiting for a grant from my school to get the basic plan, hoping not to run into anything too troubling
hey Adam, seemed you were not using VScode to code here. You mind sharing what tool you are using to code here. Looks pretty efficient . Sorry very new to all this 😂
hi Adam , tks by the video. I need have acces to twitters users data like follower number, location etc.. do you know if i get this in the new twitter api in the basic plan?
hey Adam! Trying to use the twitter API for this an analysis but each time i put in my Api credentials my intellisense marks it as an unknown. I am using vs code. What should I do? or what could be the issue
Try to copy and paste the code in to Google Colab (Free editor on Google Drive) and see if that works. Not to familiar with Python in VS Code. I normally just go Jupyter Lab or Colab
There is a location available, you just need to mention' location in the field you are looking for. API ref here: developer.twitter.com/en/docs/twitter-api/tweets/lookup/api-reference/get-tweets
hello, i have problem with error: Status Failed On, 404 Not Found 34 - Sorry, that page does not exist is it depending on using vs code instead jupyter?
Did anyone manage to pull any tweets?I have the $100 option(Basic) but i cannot get any tweets. Error:"Status Failed On, 401 Unauthorized 32 - Could not authenticate you." I have the keys.
hi adam, ive search endlessly on youtube on how I can set up an api to access twitter ads data. I signed up for a X developer account and i have been granted access to the twitter ads api account. I am not sure how I can connect the 2? so I can use python to extract analytics from twitter ads api. Can you please help. this is for my data analyst project.
have you solve this problem? my problem is "401 Unauthorized"。 i have brought Basic level i also working my data analyst project。 could we exchange some idea about Twitter API?
Under the Projects& Apps link in the left pane, click on the project that you are using , click on the Keys and Tokens Tab, next to Settings tab, generate the API Key and Secret under the Consumer Keys section.
I got this error. Please help: NameError Traceback (most recent call last) in () 9 #Pass in our twitter API authentication key 10 auth = tweepy.OAuth1UserHandler( ---> 11 consumer_key, consumer_secret, 12 access_token, access_token_secret 13 ) NameError: name 'consumer_key' is not defined
Hi I am doing a sentiment analysis only on twitter tweets for my dissertation and the recent Twitter updates, it returns an error. I need close to around more than a few thousand tweets and I am not sure what I can do now to complete it successfully.
Looking at the recent updates its 100 a month now for 10,000 tweets on the basic package developer.twitter.com/en/portal/products/basic.. So the option is subscribe for one month or find another platform ... I recently did a video on pulling RUclips comments which you can use for sentiment analysis and im going to be posting videos on scraping from other platforms in the next few weeks. If you don't have a specific topic I did a project last year on world cup tweet sentiment analysis and can give you those tweets. There are 4k in total here is a link to the csv github.com/analyticswithadam/Python/blob/main/REF%20TWEETS.csv
He throws out this videos and doesn't even state that you have to pay for the v.2, and never replies to anyone that asks him questions. So here goes: Is there a way to do this on the FREE version? I'd rather try it for free and get it working, before I start paying $100 or more per month.?
I made this video before Elon took over twitter and put the basic api behind a paywall. It’s possible to use a web scraping tool like beautiful soup but it’s not entirely legal
@@analyticswithadam damn, i have a project about financial app and i need to collect financial reviews and make summary of them. Do you have any suggestions for me to use?
If the app is on trust pilot. I found the code to extract the reviews, just change these three things in the code. Go to their page. See how many pages of reviews and the company and change the three bits below. from_page = 1 to_page = 60 company = 'eshakti.com' github.com/analyticswithadam/Python/blob/main/Web_Scraping_from_TrustPilot.ipynb
Here are 4k tweets I pulled last year on the world cup refereeing if you need something for sentiment analysis now the API is shut down. There are also labelled. github.com/analyticswithadam/Python/blob/main/REF%20TWEETS.csv
Hi Adam, this tutorial was very helpful, however, after making the API call, i got an error stating that i do not have the right level of access. This is after succesfully paying for twitter basic API and changing the access keys. Can you advice on how to correctly set up the API after making the subcription,
@@danielmartin3153 hey I had the same issue, were you able to figure it out?
Hi @@danielmartin3153, I think someone else in comments had the same issue. There is a guide on how to use the official Twitter API V2 here developer.twitter.com/en/docs/twitter-api/tweets/search/introduction. With a few options to get started, Postman, Python, etc. See if you get it sorted from there. I haven't paid so haven't queried in a good while
@@danielmartin3153 hi did you solved this issue I got the same.
@@analyticswithadam can I use the same method now in 2024? and is your account the free one or the Basic paid ? if you can reply I will really appreciate your help. I'm stuck
You are explaining everything very well. And in combination with your simple, yet effective code I found what I was looking for. Thanks!
Glad it helped!
The search_tweets attribute /method of tweepy library works only if you have full API v2 and not free as it require high access level, So you have to pay to Twitter for high level API key.
Is there another way to pull tweets from twitter without paying?
Is it possible to pull tweets if I only subscribe the basic version of v2?
@@iiicurry30 No, you need to buy.
Is it there any way to search for tweets with the free API tier?
@@migueljaramillorosado7285 You can try using a different library called as Selenium instead of Tweepy
Amazing video mate, earned yourself a new sub - such a shame about elon screwing us with the API, subbed with notifications on for the next one!
el nivel de acceso actual de la API free de twitter no da acceso a extraer la informacion de los tweets de la manera que has propuesto
love it!!, great work over here🙌🙌🙌🙌
getting error- Status Failed On, 403 Forbidden
453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level.
did you fix it?
i am getting the same error
did u fix?
I think thats because they changed the api when elon took over… if anyone has new solutions please let me know
Can you post the updated video, if any? and share the video link? When can you do so? 453
I have tried this code, but it seems that I'm using the free access level, which doesn't provide the access to the search tweets feature, otherwise, I have to move to the basic access level to apply this code, right ?
same question here !
It seems like this code is not working anymore. I found that only way to do 'search query' by using Twitter API v2 and you have to access basic levels or higher that mean you have to pay at least $100 / mo.
@@CherryAimzYess I think that's the point, otherwise, Reddit api is better when it comes to retrieve data from posts...etc
@@zakariaelaaliji7747 can u please provide the reddit api
The API is not allowing to pull the tweets now. I'm on the free plan. Any other options?
i have the 100$ sub and cant pull tweets !!!!!!
@@A-Jaradat-Z same man
any updates ?
@@A-Jaradat-ZDid you solve the rpoblem?
@jessehuang3046 Yeah, $100 for just playing around and testing, or just seeing what the API can do, seems like a lot of money out of pocket, to just see what it can do. Good Job ELON... Moron.
I am getting this error: “Status Failed On, 401 Unauthorized 32 - could not authenticate you.” What can I do to solve this error
did u find a solution to it? stuck rn :')
same issue
i am getting this:
Status Failed On, 403 Forbidden
453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level.
same. I guess that's due to the API authentication key that he tries to use at the code... trying to find an answer within the documentation rn :P
@@gabrielmmenz any luck?
Any update on this problem??@@gabrielmmenz
@@gabrielmmenz I'm getting the same error, any luck with you ?
I also meet this issue. I guess Basic Version has no access for that?
Is this only for pulling the tweets from the time you made the video or I can extract latest tweets like real time tweets?
It’s still possible but there is a charge now
Failed on, 403 Forbidden
453 - you currently have acces to a subset of Twitter API V2 Endpoint and limited V1.1 endpoints
Should I apply for not free acces ?
Getting the same error has anyone figured out the work around for this? I saw something about using a client instead of an Auth but getting no luck.
I think twitter changed there v1.1 access level, even I am facing the same issue
@@raghavendraniteeshg6198 have you solve this problem? my problem is "401 Unauthorized"。 i have brought Basic level
i also working my data analyst project。 could we exchange some idea about Twitter API?
facing the same issue, any other way to extract tweets?
very helpful, how do you get the user location? (to another column) , searching for a similar extraction is for my MSc project. many thanks
If you see the code in github ive just pulled in 5 fields from the many possible you just pull another attribute tweet.location it did look like a lot of the locations were blank though from the full tweets.
Thanks Adam, really useful. I'm getting this error auth = tweepy.OAuthlUserHandler(
AttributeError: module 'tweepy' has no attribute 'OAuthlUserHandler'. Did you mean: 'OAuthHandler'?
it's OAuth1UserHandler (1 instead of l)
you can copy paste the below code
auth = tweepy.OAuth1UserHandler(consumer_key, consumer_secret, access_token, access_token_secret)
api = tweepy.API(auth)
Amazing and thank you so much for sharing!
do you have the Basic tier or is this with the free tier?
This was recorded before the tiers
Musk screwed everyone over by making this basic thing $100 per month
@@analyticswithadam do you know what kind of queries work with tweepy now on the free tier}?
@@analyticswithadam I'm having problems with the new tiers. i keep on getting this error: 453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level. I can't seem to find a solution
Hi All, Twitter and Reddit APIs has been cut off unless you want to pay a lot. RUclips API is still good, check out this video on how to pull comments from that ruclips.net/video/SIm2W9TtzR0/видео.html
Yeah :/ Thanks for your effort! Is there a way we can extract data from Threads?
@@letconsultingpartner Cant even get access to threads in Ireland 😵
@@analyticswithadam 🙉Lol It was worth asking😵💫
it gives the error like ,can you update the code
Status Failed On, 403 Forbidden
453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level.
Us i was writing my own code and it throwed this error i came on yt for help and you also हडबडी the same problem 😂
Us i was writing my own code and it throwed this error i came on yt for help and you also हडबडी the same problem 😂
Hi, newbie question here but does it matter what text editor you use to do this?
Yes, you need to use one specifically for Python, easiest to get started is collab which is on Google drive as there is no setup..
I created a developers account for myself, but those keys that you are showing stay hidden. I can not copy them or access any of them except bearer's key. Any suggestions?
hi, how did you authorize your account? it shows me an error that my account is unauthorized.
Me too. Is there any other option to do this?
I'm getting forbidden error
Same here...wat to do?
hi Adam. I need to get tweeter API for sentiment analysis for ONE MONTH to track tech companies' stock market. but as I know API needs to charge around 100 $. Does this tutorial work for that or not?
same problem :/ can't start my master thesis :(
perhaps selenium and scraping would be better?
Have you found another way of using twitter data? @@icemixpl also need some tool to start my master thesis
@@icemixpl That's a pain in the a s s. Elon is really screwing over the actual people that can help him. F-Him. $100 per month to play with his api. F-that.!
Is this method still relevant for 'X'? I'm trying to do sentiment analysis for a graduate-level research project and basically need to teach myself how to gather data from various social media in order to appropriately complete my thesis
Everything was changed about the api with x . It introduce a need to pay.
@@analyticswithadamare there any programs/tools you’d recommend for completing such a task? Preferably free, but if I need to pay or learn some python that’s fine I suppose. I just need to be able to input a date-range, # of posts, content-topic (ex. Natural disasters) and platform (Facebook, X, Instagram) and essentially do a “mass” sentiment analysis: Produced in a way I could potentially chart on excel or at the very least be able to gauge sentiment for that range and the parameters
If there aren’t any programs available, what places do you recommend I look to at least attempt to learn how to come up with a way of making this easier rather than analyzing one by one. Idk if that explanation makes sense. Also thank you for letting me know the API has changed!
@@benjamincortez8146 RUclips Comments are free, I have a few videos on how to pull those in Python or have one on trust pilot review scraping in Python.
@@benjamincortez8146 Hey there! Interesting to find someone with the same problem. :D I am at the same point and looking for ways to do a "mass" sentiment analysis on social media posts. But with another topic at focus (crypto currency markets). Maybe we can have a talk about our findings so far. Wish you the best of luck for your thesis!
I bought a basic subscription and I am still not able to fetch tweets via tweepy, please help. Please help if we still need to use the four keys or just the bearer token key is enough.
There is the Twitter API V2... I reckon you might need to go directly through that here is a code example.. Looks like the bearer token is enough.. github.com/twitterdev/Twitter-API-v2-sample-code/blob/main/Tweet-Lookup/get_tweets_with_bearer_token.py
@@analyticswithadam But you still can't do anything on the Free subscription, right?
it really was amazing when it lasted. thanks still.
wait so you cant use twitter API anymore?
is there a documentation about how to write the query? I'm looking for it on tweepy docs but I can't found it until now
hey, is this tutorial up to date? Because twitter API page says that free tier can only post not read twitts.
The functionality can been pulled since for free tier
@@analyticswithadam Hi Adam, may I request an updated video on getting tweet data please? ? I believe with the free tier for X API v2, we get to read 1,500 Posts/month.
@@harish77720 From what I see here we still cant pull tweets on the free tier developer.twitter.com/en/docs/twitter-api/getting-started/about-twitter-api
@@harish77720 Yes please do another video only using the Free Tier, then I'll subscribe, not before.
ya no se puede extraer con la cuenta grauita 😥
Thank you for this video. I will try the Basic subscribe to see if this works. I saw a few in the comment sections with issues. I can try to find out why the error occurs.
🤞
Let me know if this works for you/you figure out the issue please! I'm waiting for a grant from my school to get the basic plan, hoping not to run into anything too troubling
im not finding a solution foi the "403 Forbidden" error when i try to perform the query with the api....
same with me
code does not work I added my key and name 'consumer_key' is not defined
Sorry about that it’s an old video they restructured the API
hey Adam, seemed you were not using VScode to code here. You mind sharing what tool you are using to code here. Looks pretty efficient . Sorry very new to all this 😂
I use google colab for python, its on google drive so easy to share, you can grab the notebook from the description
So this will not be considerd as scraping right as we extract the data from api. Cause I have seen in several websites that it's an crime.
Data through an API is not scraping . It’s only when you circumvent controls on a site
Really waiting for this video remaster. Error 453))
Same, any fix?
hello adam, please, how to set the starting date and the end date of the tweet searched?
up to how many tweets can you set for the query to still work? can it handle more than 1000?
hi Adam , tks by the video. I need have acces to twitters users data like follower number, location etc.. do you know if i get this in the new twitter api in the basic plan?
Looks like it is in V2... Here is the documentation page. developer.twitter.com/en/docs/twitter-api/users/lookup/introduction
hey Adam! Trying to use the twitter API for this an analysis but each time i put in my Api credentials my intellisense marks it as an unknown. I am using vs code. What should I do? or what could be the issue
Try to copy and paste the code in to Google Colab (Free editor on Google Drive) and see if that works. Not to familiar with Python in VS Code. I normally just go Jupyter Lab or Colab
how to display top Twitter trends in PHP or Python, can you make a video on this? Also, mention whether is free or not?
Can I get the location of the user from each tweet using the attributes? If yes how so.
There is a location available, you just need to mention' location in the field you are looking for. API ref here: developer.twitter.com/en/docs/twitter-api/tweets/lookup/api-reference/get-tweets
@@analyticswithadam Thanks.
hello, i have problem with error:
Status Failed On, 404 Not Found
34 - Sorry, that page does not exist
is it depending on using vs code instead jupyter?
I don't think so, Twitter changed the rules recently so possibly the code is out of date.
how is this better than web scrapping using selenium? wont this will lead to extracting sponsored tweets as well?
I apologise for making this video
Uhh? Is that a sarcastic reply?
Did anyone manage to pull any tweets?I have the $100 option(Basic) but i cannot get any tweets. Error:"Status Failed On, 401 Unauthorized
32 - Could not authenticate you." I have the keys.
I got the same error. 😢
your access tokens may have changed. check again.
@@sandeepsanyal9382 same error and I checked my access tokens, and they are fine. Did you solve it? If yes, can you please help me?
hi adam, ive search endlessly on youtube on how I can set up an api to access twitter ads data. I signed up for a X developer account and i have been granted access to the twitter ads api account. I am not sure how I can connect the 2? so I can use python to extract analytics from twitter ads api. Can you please help. this is for my data analyst project.
have you solve this problem? my problem is "401 Unauthorized"。 i have brought Basic level
i also working my data analyst project。 could we exchange some idea about Twitter API?
i srsly have no idea where to reveal my API key. It only shows 6 last characters
I am trying to run this but I am getting an error NameError: name 'consumer_key' is not defined
Under the Projects& Apps link in the left pane, click on the project that you are using , click on the Keys and Tokens Tab, next to Settings tab, generate the API Key and Secret under the Consumer Keys section.
i am getting error 401. what to do?
theres an error NameError: name 'tweets_df' is not defined
How to do it if I want to pull not a specific number but from a specific date to another?
Is yours working , I paid for basic but I can't get the tweets
@@metumoshifidi6607same here, did it work with you?
how to extract the geographic location information fo each tweets?
Pls can you tell me can i recover my tweets that i accidently deleted yesterday?
I got this error. Please help:
NameError Traceback (most recent call last)
in ()
9 #Pass in our twitter API authentication key
10 auth = tweepy.OAuth1UserHandler(
---> 11 consumer_key, consumer_secret,
12 access_token, access_token_secret
13 )
NameError: name 'consumer_key' is not defined
AMAZING!!!! THANKS! 😢
Hi I am doing a sentiment analysis only on twitter tweets for my dissertation and the recent Twitter updates, it returns an error. I need close to around more than a few thousand tweets and I am not sure what I can do now to complete it successfully.
Looking at the recent updates its 100 a month now for 10,000 tweets on the basic package developer.twitter.com/en/portal/products/basic.. So the option is subscribe for one month or find another platform ... I recently did a video on pulling RUclips comments which you can use for sentiment analysis and im going to be posting videos on scraping from other platforms in the next few weeks. If you don't have a specific topic I did a project last year on world cup tweet sentiment analysis and can give you those tweets. There are 4k in total here is a link to the csv github.com/analyticswithadam/Python/blob/main/REF%20TWEETS.csv
@@analyticswithadam I have the 100$ sub and can't pull a single tweet !!!!!!
@@A-Jaradat-Z See if it works with this method developer.twitter.com/en/docs/twitter-api/tweets/lookup/quick-start
@@A-Jaradat-ZI’ve been seeing people buy the basic, pro and enterprise plan and they couldn’t grab tweets as well. So unfortunate
Did you manage to pull any tweets?I have the $100 option but i cannot get any tweets.
Amazing video, i want to know how can I possibly get the replies of an only one tweet ? How can i write the query
It’s possible but Unfortunately you need to pay to pull tweets now
I get that error
Status Failed On, 401 Unauthorized
32 - Could not authenticate you.
I also face same problem , can you solve this problem ?
this is for Free version API?
Hi Adam, it doesn't work unfortunately. Returns a 403 forbidden error from the API
Hi Steve, This video was made before Elon cut the functionality off. Im going to redo it with an API thats still open.
@@analyticswithadam that's great! Thank you
@@analyticswithadam i was using it before stupid elon cut it off, goddamn!!!
@@analyticswithadam Then wtf you have uploaded this video now
@@analyticswithadam Looks like 453 for me.
He throws out this videos and doesn't even state that you have to pay for the v.2, and never replies to anyone that asks him questions.
So here goes: Is there a way to do this on the FREE version? I'd rather try it for free and get it working, before I start paying $100 or more per month.?
I made this video before Elon took over twitter and put the basic api behind a paywall. It’s possible to use a web scraping tool like beautiful soup but it’s not entirely legal
Can you make a video of the reddit version since we can't use twitter version for free
REDDIT is paid too now… I made a RUclips one
@@analyticswithadam damn, i have a project about financial app and i need to collect financial reviews and make summary of them. Do you have any suggestions for me to use?
@@dogachatun8715 what is the app? Thinking web scraping but depends on where the reviews are held
If the app is on trust pilot. I found the code to extract the reviews, just change these three things in the code.
Go to their page. See how many pages of reviews and the company and change the three bits below.
from_page = 1
to_page = 60
company = 'eshakti.com'
github.com/analyticswithadam/Python/blob/main/Web_Scraping_from_TrustPilot.ipynb
@@analyticswithadam Thank you so much! We are making an app for our senior project so we didn't decide the ap yet
Excellent
can I scrap the tweet images?
Can’t scrape anything anymore unless you pay.. thanks elon
thank you sir, please sir make video retrieve likes count and retweet count use post id
I'm getting error 403, anyone know how to deal with this? Do I need to pay?
The free tweets have been turned off unfortunately.
have you solve this problem? my problem is "401 Unauthorized"。 i have brought Basic level
I Belive is search api is no longer available in free account.
You are right
ツイートがされた期間の設定方法を教えてください