Using Instagram's Service
Using Instagram's Service
The Evo Slider plugin allows you to display photos from Instagram service.
You can use the external option to load data from Instagram.
Instagram parameters:
| Name | Type | Description |
|---|---|---|
| data | String | Set to "instagram" when you want to load content from Instagram. |
| source | String | Possible values are: "recent" or "liked". |
| username | String | Instagram user name. |
| access_token | String | Instagram's API requires an access token to access your photos.
Click here
to get your token.
Once the you have authenticated and then authorized our application, you will redirect to our redirect_uri with the access_token in the url fragment. It'll look like so: http://our-redirect-uri#access_token=ACCESS-TOKEN Simply grab the access_token off the URL fragment. |
Examples:
Retrieve user recent photos:
external: {
data: "instagram",
access_token: "your_access_token",
source: "recent",
username: "instagram_username"
}
Retrieve photo you likes:
external: {
data: "instagram",
access_token: "your_access_token",
source: "liked"
}