Difference between revisions of "Picplz"

From Archiveteam
Jump to navigation Jump to search
(expand a bit)
Line 10: Line 10:
}}
}}


<blockquote>On July 3, 2012, picplz will shut down permanently and all photos and data will be deleted. We have provided download links for existing users to save their photos. Thank you for your support of picplz and we apologize for any inconvenience this may cause you.</blockquote>
'''Picplz''' was a photo sharing service that died on July 3, 2012.


[http://archiveteam.org/index.php?title=File:Picplz-com-shutdown-blog.png Screengrab of farewell blog post]
==Closure announcement==
As reported by [http://techcrunch.com/2012/06/02/picplz-shutdown-july-3/ TechCrunch] on June 2 ([[:File:Picplz-com-shutdown-blog.png|screengrab of farewell blog post]]):
:On July 3, 2012, picplz will shut down permanently and all photos and data will be deleted.
:Until then, you can log in and download your photos by clicking on the download link next to each photo in your photo feed.
:Thank you for your support of picplz and we apologize for any inconvenience this may cause you.
The website was replaced with the following:
:On July 3, 2012, picplz will shut down permanently and all photos and data will be deleted. We have provided download links for existing users to save their photos. Thank you for your support of picplz and we apologize for any inconvenience this may cause you.


== API ==
==Rescue effort==
We got it:
* [http://ia700709.us.archive.org/8/items/archiveteam-picplz-index/picplz-20120823.html Search for a username]
* [http://archive.org/details/archiveteam-picplz Full archives]
 
The following sections are kept from the early archiving effort for historic interest.
 
=== API ===
Picplz has an API that returns data if you give it (incremental!) numerical ids.
Picplz has an API that returns data if you give it (incremental!) numerical ids.


Line 26: Line 39:
Image formats: the API has several [https://sites.google.com/site/picplzapi/image-format-syntax image formats] available. We may or may not want all of them. The web interface uses the following formats: <code>56s,64s,100s,400r,640r,1024r</code> (1024r being the largest version the API provides), so we might want to get those.
Image formats: the API has several [https://sites.google.com/site/picplzapi/image-format-syntax image formats] available. We may or may not want all of them. The web interface uses the following formats: <code>56s,64s,100s,400r,640r,1024r</code> (1024r being the largest version the API provides), so we might want to get those.


== Download scripts ==
=== Download scripts ===
A first version of a download script is available in the [https://github.com/ArchiveTeam/picplz-grab GitHub repository].  
A first version of a download script is available in the [https://github.com/ArchiveTeam/picplz-grab GitHub repository].  
When given a numerical user ID the script uses the API to download all data and images of that user.
When given a numerical user ID the script uses the API to download all data and images of that user.

Revision as of 09:19, 6 July 2013

Picplz
Picplz logo
Picplz-com.png
URL http://picplz.com/[IAWcite.todayMemWeb]
Status Offline
Archiving status Saved!Find a user
Archiving type Unknown
Project source https://github.com/ArchiveTeam/picplz-grab
Project tracker http://picplz.heroku.com/
IRC channel #archiveteam-bs (on hackint)

Picplz was a photo sharing service that died on July 3, 2012.

Closure announcement

As reported by TechCrunch on June 2 (screengrab of farewell blog post):

On July 3, 2012, picplz will shut down permanently and all photos and data will be deleted.
Until then, you can log in and download your photos by clicking on the download link next to each photo in your photo feed.
Thank you for your support of picplz and we apologize for any inconvenience this may cause you.

The website was replaced with the following:

On July 3, 2012, picplz will shut down permanently and all photos and data will be deleted. We have provided download links for existing users to save their photos. Thank you for your support of picplz and we apologize for any inconvenience this may cause you.

Rescue effort

We got it:

The following sections are kept from the early archiving effort for historic interest.

API

Picplz has an API that returns data if you give it (incremental!) numerical ids.

https://sites.google.com/site/picplzapi/

http://api.picplz.com/api/v2/pic.json?ids=11183559
http://api.picplz.com/api/v2/user.json?id=1515537

Image formats: the API has several image formats available. We may or may not want all of them. The web interface uses the following formats: 56s,64s,100s,400r,640r,1024r (1024r being the largest version the API provides), so we might want to get those.

Download scripts

A first version of a download script is available in the GitHub repository. When given a numerical user ID the script uses the API to download all data and images of that user.

Something to decide: we can get all the information from the API, but what else should we save? Should the WARC file include any of the web pages, even though that doesn't provide extra information? At the moment the script downloads the user's homepage and the page of every picture.

The infinite scrolling of the user page poses a problem. The JavaScript functions add a _ parameter with a timestamp to their API request. We can't really archive the timestamps: the resurrected page will request URLs that aren't archived. The download script therefore archives the API urls without a timestamp: remove the timestamp parameter from the JavaScript to fix the archived page.