You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so I was making a query after getting a session like this
session.Get("v3.0/me?fields=phone,emails",facebook.Params{})
Which worked perfectly before . Suddenly it stopped working .
The solution I found is to use the path only in the query and give the fields to be retrieve at the Param struct .
session.Get("v3.0/me",facebook.Params{
"fields":"phone,emails"
})
And it works just fine
The text was updated successfully, but these errors were encountered:
so I was making a query after getting a session like this
session.Get("v3.0/me?fields=phone,emails",facebook.Params{})
Which worked perfectly before . Suddenly it stopped working .
The solution I found is to use the path only in the query and give the fields to be retrieve at the Param struct .
session.Get("v3.0/me",facebook.Params{
"fields":"phone,emails"
})
And it works just fine
The text was updated successfully, but these errors were encountered: