OwnYourGram

Importing from Instagram

Instagram has recently started severely rate limiting OwnYourGram and any other apps that don't use the official API. As such, OwnYourGram has not been able to continue automatically importing photos at the rate it used to.

The majority of the rate limiting is happening when OwnYourGram attempts to fetch your profile to find your recent photos. Fetching individual photos, however, is not susceptible to the same rate limits. This means you can always log in to OwnYourGram and provide it with the URL to one of your photos and it will be able to import it immediately.

OwnYourGram will still continue to poll your profile, however it does so only once every 24 hours.

If OwnYourGram encounters too many Micropub errors when posting the photo to your site, your automatic import may be disabled entirely.

Integration with Other Apps

You can launch the individual photo import interface with an Instagram URL pre-filled. You can use this to integrate with other applications, such as iOS Shortcuts, to send an Instagram photo URL to OwnYourGram and import the photo with just one more click.

To preview importing a photo from Instagram, add a parameter url to the /photos page with an Instagram URL, e.g.:

https://ownyourgram.com/photos?url=https://www.instagram.com/p/B3fIP5zhT0P/

Micropub

OwnYourGram will convert your Instagram photos and videos into a Micropub request, and send them to your Micropub endpoint.

Form-Encoded Request

The request to create a photo will be sent as multipart form-encoded with a file upload, so that the actual photo (and video) data is sent along with the request. Most web frameworks will automatically handle parsing the HTTP request and providing the POST parameters and the file upload automatically.

The request will contain the following POST parameters:

JSON Request

By default, OwnYourGram will send a multipart request to your Micropub endpoint with the photo (and video) as an upload. A better option is to handle the JSON format, since you'll get better information about venues, as well as person-tags.

If you have a Media Endpoint, then OwnYourGram will first upload the photo to your Media Endpoint and include the URL in the JSON request. If you don't have a Media Endpoint, then the Instagram URL will be included instead.

The JSON request will look like the below. The properties are the same as the form-encoded request with the exception of how location information is handled.

{
  "type": ["h-entry"],
  "properties": {
    "content": ["Photo caption from Instagram including #hashtags"],
    "published": ["2018-01-22T16:58:01-05:00"],
    "category": ["hashtags"],
    "location": [{
      "type": ["h-card"],
      "properties": {
        "name": ["Baltimore, Maryland"],
        "latitude": [39.2903],
        "longitude": [-76.6125]
      }
    }],
    "syndication": ["https://www.instagram.com/p/BeRIVrpAdcm/"],
    "photo": ["https://instagram.fsea1-1.fna.fbcdn.net/vp/afbe9ef713ea6a784b8b2d16cac075c7/5B0BB2B8/t51.2885-15/e35/26276701_146389926072712_1687561928420884480_n.jpg"]
  }
}

Note that every value is an array, even if there is only one value, which is the standard Microformats2 JSON format. See the Micropub specification for more details on the JSON syntax.

Authentication

The request will also contain an access token in the HTTP Authorization header:

Authorization: Bearer XXXXXXXX

Micropub Documentation

To learn more about setting up a Micropub endpoint, refer to the documentation and tutorials below.