Skip to content

Instantly share code, notes, and snippets.

View capung-ggwp's full-sized avatar

capung GGWP capung-ggwp

View GitHub Profile
@capung-ggwp
capung-ggwp / fetchProfile.js
Last active December 15, 2021 01:30
App Script example for Google Sheet
// example on sheet https://res.cloudinary.com/capung-ggwp/image/upload/v1639101873/ss_example_sheet_vs929r.png
function getProfile(username) {
const url = 'https://instagram-profile1.p.rapidapi.com/getprofile/'+username
const options = {
'method' : 'get',
'headers': {
'x-rapidapi-host': 'REPLACE_IT_X_RAPIDAPI_HOST',
'x-rapidapi-key': 'REPLACE_IT_X_RAPIDAPI_KEY'
}