6

Is there a way (using API) to get users uid from the profile URL in facebook?

Amit
  • 712
  • 2
  • 13
  • 26

4 Answers4

5

The REST api has been deprecated.

The proper way to do this is to pass the profile name to the graph api

see: Facebook ID from URL

Ryan White
  • 1,927
  • 2
  • 19
  • 32
5

You can call the graph directly as such: https://graph.facebook.com/username where username is the username you want to lookup.

Francis Pelland
  • 784
  • 4
  • 11
-1

As of today(28th July 2015), I found a different way to find Facebook user's numeric id from profile url (or username).

As you all will be knowing the profile url syntax is https://www.facebook.com/[username]

So just browse to profile url, right click to view source and search for string "uid":. You will get numeric id next to it.

Risky Pathak
  • 598
  • 5
  • 16
-2

Use Users.getInfo, which returns an array of user info, such as first_name, last_name, and uid. Use this call to get user data that you intend to display to other users (of your application, for example). If you need some basic information about a user for analytics purposes, call users.getStandardInfo instead.

Christopher Richa
  • 1,278
  • 1
  • 9
  • 20