Skip to content
New issue

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

Support for Parler #155

Open
InnovativeInventor opened this issue Nov 10, 2020 · 6 comments
Open

Support for Parler #155

InnovativeInventor opened this issue Nov 10, 2020 · 6 comments
Labels
enhancement New feature or request modules

Comments

@InnovativeInventor
Copy link

Parler is a young social media site that has "a significant user base of Trump supporters, conservatives, and Saudi nationalists. Posts on the website often contain far-right content, antisemitism, and conspiracy theories." (Source: Wikipedia).

For those reading this issue: this issue was filed after an IRC conversation on hackint#archivebot with JAA.

@JustAnotherArchivist JustAnotherArchivist added enhancement New feature or request modules labels Nov 10, 2020
@InnovativeInventor
Copy link
Author

I'm gonna close this issue now. Will reopen this issue if Parler goes back online.

@JustAnotherArchivist JustAnotherArchivist changed the title Support for scraping/archiving Parler Support for Parler Mar 1, 2021
@martinratinaud

This comment has been minimized.

@TheTechRobo
Copy link
Contributor

I'm going to see what I can do with making Parler work - it seems to have a pretty simple XHR schema.

@TheTechRobo
Copy link
Contributor

TheTechRobo commented Jan 29, 2022

Here are some notes for myself.

Getting User Feed (includes post contents :D)
import requests
files = {
    'user': (None, 'waynedupreeshow'),
    # 'page': (None, 2),
}
response = requests.post('https://parler.com/open-api/profile-feed.php', files=files).text
print(response)

Technical problem: Parler seems to return only the first 20 posts in pagination; after that, it starts continually returning posts 11 to 20, it seems...

@TheTechRobo
Copy link
Contributor

Looks like only individual posts can be retrieved without authentication now, cf. #399 (comment)

@TheTechRobo
Copy link
Contributor

TheTechRobo commented May 15, 2023

Looks like Parler is permanently offline. Back in April there was a death message, now all pages respond with 503.

Edit: This is apparently a "temporary measure," but it's been close to a month. I'm not sure it's coming back up. But it could.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request modules
Projects
None yet
4 participants