get/entry
This resource is used to return information about specific journal entries, including title, description, tags and comments.
URL
http://api.blipfoto.com/get/entry/
- Version 1
- Version 2
Parameters
| Parameter | Description | Required? | ||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
display_name |
The display name(s) of the user whose entries you wish to return. You may specify multiple display names by separating them with commas.
e.g. |
No | ||||||||||||||||||||||||||||||||||||||||||||||||||
date |
The date(s) of the entries you wish to return, in YYYY-MM-DD format. You may specify multiple dates by separating them with commas.
e.g. latest keyword to return the latest entry from the specified user(s).
e.g. |
No | ||||||||||||||||||||||||||||||||||||||||||||||||||
entry_id |
Rather than providing display_name and date parameters, you can instead provide multiple entry_id values. Again, separate them with commas.
e.g. |
No | ||||||||||||||||||||||||||||||||||||||||||||||||||
data |
A comma separated list of values for the data you wish to retrieve. The available values are: | Yes | ||||||||||||||||||||||||||||||||||||||||||||||||||
e.g. Note that if |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Response data
The data object is an array of objects containing the information that was requested.
Example
The following request:
http://api.blipfoto.com/get/entry/?api_key=4c297fc904&display_name=g,joe&entry_date=2009-02-06&data=user_name,thumbnail,date,views,title,description,exif:iso|aperture
will give this response:
<?xml version="1.0" encoding="UTF-8"?>
<blipapi>
<version>2</version>
<request_id></request_id>
<error></error>
<data>
<item>
<display_name>G</display_name>
<date>2009-02-06</date>
<title>A Quiet Friday Night</title>
<description><![CDATA[Tonight we're baby sitting the lovely Bella. Right now she's
tucked up upstairs after an evening of playing, reading and a quick
<a href='http://www.youtube.com/watch?v=blrl4wC-vsk'>Miffy</a> video on the iPhone.
All quiet on the western front......and The Wonder Dog is lying beside us on the sofa. A contented
Friday evening.]]></description>
<views></views>
<thumbnail>
http://www.blipfoto.com/thumbs/9/2009/big/color/1963367765498cba6cdbc00
2.14174956.jpeg
</thumbnail>
<exif>
<iso>400</iso>
<aperture>f/4.5</aperture>
</exif>
</item>
<item>
<display_name>Joe</display_name>
<date>2009-02-06</date>
<title>Blue sky thinking</title>
<description>If you could turn my mind inside out, this is pretty much what you'd see.
My goal in life? Pan right, tilt up.</description>
<views>456</views>
<thumbnail>
http://www.blipfoto.com/thumbs/2/2009/big/color/102936164498c61ee6b503
8.30686958.jpeg
</thumbnail>
<exif>
<iso>100</iso>
<aperture>f/8.0</aperture>
</exif>
</item>
</data>
</blipapi>
Note that some fields may not be populated due to user preferences (such as views above).
