Skip to content

Instantly share code, notes, and snippets.

View sss329's full-sized avatar

Sunny S. Shah sss329

View GitHub Profile
int InstagramStats::getLikesCount(String igUserId) {
String command = "/v10.0/" + igUserId + "?fields=media&access_token=" + _accessToken;
String response = sendGetToInstagram(command);
Serial.println(response);
if (_debug) Serial.println(response);
DynamicJsonDocument doc(1024);