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
github <- api_endpoint('https://api.github.com/') %>% api_oauth2(...) %>% api_error_handler(...) github %>% api_path('repos', username, repo, 'issues') %>% GET(config(token = my_token)) # longer but simpler github %>% api_path('repos') %>% api_path(username) %>% api_path(repo) %>% api_path('issues') %>% GET() # with interpolation repo_info <- list(username = 'craigcitro', repo = 'r-travis') github %>% api_template('repos/{username}/{repo}/issues', repo_info) %>% GET()
cc @craigcitro
The text was updated successfully, but these errors were encountered:
Now think this belongs elsewhere, e.g. https://github.com/sckott/httsnap
Sorry, something went wrong.
No branches or pull requests
cc @craigcitro
The text was updated successfully, but these errors were encountered: