Facebook.get_object

You're seeing just the function get_object, go back to Facebook module for more information.
Link to this function

get_object(object_id, access_token)

View Source

Specs

get_object(object_id :: String.t(), access_token()) :: resp()

Basic Graph object information by object ID

Example

iex> Facebook.get_object("1234567", "<Access Token>")
{:ok, %{"id" => id}}
Link to this function

get_object(object_id, access_token, params)

View Source

Specs

get_object(object_id(), access_token(), params()) :: resp()

Get Graph object information for the specified params for the provided object ID

Example

iex> Facebook.get_object("1234567", "<Access Token>", [fields: "id,name"])
{:ok, %{"id" => id, "name" => name}

See: https://developers.facebook.com/docs/graph-api/reference/page