Skip to content

Instantly share code, notes, and snippets.

@brygrill
Created February 21, 2019 10:01
Show Gist options
  • Save brygrill/5ca9fd3908f30f9218cd00715fc8e3b6 to your computer and use it in GitHub Desktop.
Save brygrill/5ca9fd3908f30f9218cd00715fc8e3b6 to your computer and use it in GitHub Desktop.
import axios from 'axios';
const userItemsBase = 'https://www.arcgis.com/sharing/rest/content/users';
export const fetchUserContent = async (token, username) => {
const { data } = await axios.get(`${userItemsBase}/${username}`, {
params: {
token,
f: 'json',
},
});
return data;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment