You are here

function facebook_wall_base_url in Facebook Wall 7

The base URL for all Graph API requests.

Return value

string The base URL for all Graph API requests.

5 calls to facebook_wall_base_url()
facebook_wall_build_feed_url in ./facebook_wall.module
Generate a Graph API URL string for a page's feed.
facebook_wall_build_likes_url in ./facebook_wall.module
Build the URL to obtain the number of links for the system page.
facebook_wall_build_picture_url in ./facebook_wall.module
Build the URL to obtain the picture for the requested user.
_facebook_wall_access_token_permission_info_array in ./facebook_wall.admin.inc
List permissions on access token of user.
_facebook_wall_page_info_array in ./facebook_wall.module
Generate basic FB page or user information content.

File

./facebook_wall.module, line 129
Get the current facebook wall posts of the given user or page.

Code

function facebook_wall_base_url() {
  return 'https://graph.facebook.com/v3.2/';
}