Post not found
See original GitHub issueI’ve been using this library for the past few months to obtain data related to my country’s ministry of health, and it’s been working very well, until today. The following code, which usually works and returns the respective data, currently produces no data for ‘post’ and hence, nothing for postText, postImage or postURL:
for post in get_posts('MinistryofHealthTT', pages=1):
postText = post['text'][:50]
postImage = post['image']
postURL = post['post_url']
Usually the data is produced in the form of a dictionary, however none of the data is currently being extracted. I also know for sure that the post exists. Hoping someone could provide me with assistance/clarification on why I am unable to receive data from this function, or if there was an update to this function that I missed
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:7 (2 by maintainers)
Top Results From Across the Web
POST http://localhost:3000/ 404 (Not Found) - Stack Overflow
The error is POST http://localhost:3000/ 404 (Not Found). You don't have a post route for /. You can create one like so: router.post('/' ......
Read more >POST request 404 not found - Help - Postman community
I am having a response when I choose GET request, but when I change it to POST, I get a 404 not found...
Read more >404 Not Found Error: What It Is and How to Fix It - Airbrake Blog
The 404 Not Found Error is an HTTP response status code, which indicates that the requested resource could not be found.
Read more >POST http://localhost:3000/ 404 (Not Found) - JavaScript
I'm trying to set up a simple checkout using Stripe, but when making the POST request to the server I'm getting a 404...
Read more >How to Fix Error 404 Not Found on Your WordPress Site - Kinsta
The Error 404 Not Found status code indicates that the origin server ... In this post, we're going to try to help you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This was a change at Facebook but it seems like they have reverted it again, so you should once again be able to scrape
returns
so this seems fixed