I dont know if this is possible in excel and need your advice. If I enter the below url in the browser,I get a Json object with a "is_verified" parameter either true or false.
https://graph.facebook.com/fql?q=SELECT is_verified FROM page WHERE username="nokia"
This is what i get
The above link has a nokia pagename, In excel, in the range A1:A782, I have list of facebook pagename, Is it possible to get the status via Json object in excel vba?
https://graph.facebook.com/fql?q=SELECT is_verified FROM page WHERE username="nokia"
This is what i get
Code:
{
"data": [
{
"is_verified": true
}
]
}