[This is preliminary documentation and is subject to change.]

Returns all visible photos according to the filters specified.

Namespace:  Facebook.Api.Controllers
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public FacebookResponse<FacebookList<Photo>> Get(
	long subjId,
	string aid,
	string[] pids
)
Visual Basic (Declaration)
Public Function Get ( _
	subjId As Long, _
	aid As String, _
	pids As String() _
) As FacebookResponse(Of FacebookList(Of Photo))
Visual C++
public:
FacebookResponse<FacebookList<Photo^>^>^ Get(
	long long subjId, 
	String^ aid, 
	array<String^>^ pids
)

Parameters

subjId
Type: System..::.Int64
Filter by photos tagged with this user. You must specify at least one of
CopyC#
subj_id
,
CopyC#
aid
or
CopyC#
pids
. The
CopyC#
subj_id
parameter has no default value, but if you pass one, it must be the user's user ID.
aid
Type: System..::.String
Filter by photos in this album. You must specify at least one of
CopyC#
subj_id
,
CopyC#
aid
or
CopyC#
pids
. The
CopyC#
aid
parameter has no default value. The
CopyC#
aid
cannot be longer than 50 characters.
pids
Type: array< System..::.String >[]()[]
Filter by photos in this list. This is a comma-separated list of
CopyC#
pids
. You must specify at least one of
CopyC#
subj_id
,
CopyC#
aid
or
CopyC#
pids
. The
CopyC#
pids
parameter has no default value.

Return Value

[Missing <returns> documentation for "M:Facebook.Api.Controllers.PhotosController.Get(System.Int64,System.String,System.String[])"]

See Also

PhotosController Class
Facebook.Api.Controllers Namespace