We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have seen several comments on this subject, does anyone have an answer why the API is not working anymore ?
I have been trying with this :
getPushshiftData2 = function (postType, ...) { if (postType == "comment") { getPushshiftURL(postType, ...) %>% jsonlite::fromJSON() %>% .$data %>% jsonlite::flatten(recursive = TRUE) %>% select(author, title, selftext, created_utc, id, num_comments, score, subreddit) %>% as_tibble() } else { getPushshiftURL(postType, ...) %>% jsonlite::fromJSON() %>% .$data %>% jsonlite::flatten(recursive = TRUE) %>% select(author, body, parent_id, score, created_utc, id, subreddit) %>% as_tibble() } }
and save the date in conversion date to epoch
And all I get is empty files with the same date. There seems also to be a problem with the conversion between date to epoch conversion.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have seen several comments on this subject, does anyone have an answer why the API is not working anymore ?
I have been trying with this :
getPushshiftData2 = function (postType, ...) {
if (postType == "comment") {
getPushshiftURL(postType, ...) %>% jsonlite::fromJSON() %>%
.$data %>% jsonlite::flatten(recursive = TRUE) %>%
select(author, title, selftext, created_utc, id,
num_comments, score, subreddit) %>% as_tibble()
}
else {
getPushshiftURL(postType, ...) %>% jsonlite::fromJSON() %>%
.$data %>% jsonlite::flatten(recursive = TRUE) %>%
select(author, body, parent_id, score, created_utc, id,
subreddit) %>% as_tibble()
}
}
and save the date in conversion date to epoch
And all I get is empty files with the same date. There seems also to be a problem with the conversion between date to epoch conversion.
The text was updated successfully, but these errors were encountered: