Android Question view a facebook profile using the name!

WebQuest

Active Member
Licensed User
Hi community I was wondering if it was possible through intent to view a facebook profile using the username as search criteria without knowing the id?

this solution works only knowing the user id:

B4X:
Dim in As Intent
    in.Initialize(in.ACTION_VIEW,"fb://page/280396775373599")
    StartActivity(in)
 
Top