| GeographiesRecent Method (Int32, NullableInt32, String) |
Get very recent media from a geography subscription that you created. Note: you can only access Geographies that were explicitly created by your OAuth client. To backfill photos from the location covered by this geography, use the media search endpoint.
Requires Authentication: False
Namespace: InstaSharp.EndpointsAssembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public Task<MediaResponse> Recent(
int geoId,
Nullable<int> count,
string minId
)
Public Function Recent (
geoId As Integer,
count As Nullable(Of Integer),
minId As String
) As Task(Of MediaResponse)
public:
Task<MediaResponse^>^ Recent(
int geoId,
Nullable<int> count,
String^ minId
)
member Recent :
geoId : int *
count : Nullable<int> *
minId : string -> Task<MediaResponse>
Parameters
- geoId
- Type: SystemInt32
The id of the media about which to retrieve data - count
- Type: SystemNullableInt32
Max number of media to return. - minId
- Type: SystemString
Return media before this min_id.
Return Value
Type:
TaskMediaResponseA media response containing a list of media
See Also