Hi guys,
I'm trying to get the avatar or profile photo, whatever you want to call it, using the OAuth2 class, but Not getting very far...
here's what I've tried, no luck.:
I'm trying to get the avatar or profile photo, whatever you want to call it, using the OAuth2 class, but Not getting very far...
here's what I've tried, no luck.:
B4X:
Dim avatar As Map = map.Get("cover_photos")
If avatar.IsInitialized Then
Dim my_avatar As Bitmap = avatar.Get(0)
my_avatar.Initialize2(avatar.Get("value"))
ImageView1.Bitmap = my_avatar
End If