Send GET requests to Instagram's API

ig_api_get(...)

Arguments

...

Path and query string components (endpoint parameters) should be supplied here. If unnamed, the first object is assumed to be the API path path, which is the string pointing to the desired API endpoint users/self. Additional named arguments supplied here will be included as part of the query string (trailing the "?" in the URL).

Value

An HTTP response object.

Examples

# NOT RUN {
## make custom request to locations/search endpoint
ig_locs <- ig_api_get("locations/search", lat = 48.858844, lng = 2.294351)

## view data
ig_as_tbl(ig_locs)
# }