GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Facebook::Graph::Picture(3) User Contributed Perl Documentation Facebook::Graph::Picture(3)

Facebook::Graph::Picture - Get the URI for the picture of any object.

version 1.0801

 my $fb = Facebook::Graph->new;
 
 my $default_picture =  $fb->picture('16665510298')->uri_as_string;
 my $large_picture = $fb->picture('16665510298')->get_large->uri_as_string;
 my $small_picture = $fb->picture('16665510298')->get_small->uri_as_string;
 my $square_picture = $fb->picture('16665510298')->get_square->uri_as_string;

This module allows you to generate the URL needed to fetch a picture for any object on Facebook.

Get a large picture. 200 pixels wide by a variable height.

id

The unique id or object name of an object.

Example: For user "Sarah Bownds" you could use either her profile id "sarahbownds" or her object id 767598108.

Get a small picture. 50 pixels wide by a variable height.

id

The unique id or object name of an object.

Example: For user "Sarah Bownds" you could use either her profile id "sarahbownds" or her object id 767598108.

Get a square picture. 50 pixels wide by 50 pixels tall.

id

The unique id or object name of an object.

Example: For user "Sarah Bownds" you could use either her profile id "sarahbownds" or her object id 767598108.

Returns a URI string based upon all the methods you've called so far on the query. You can throw the resulting URI right into an <img> tag.

Facebook::Graph is Copyright 2010 - 2012 Plain Black Corporation (<http://www.plainblack.com>) and is licensed under the same terms as Perl itself.
2014-09-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.