forked from Pomax/node-flickrapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.sample
executable file
·30 lines (26 loc) · 1.01 KB
/
env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Get a free key and secret from http://www.flickr.com/services/apps/create/apply
#
export FLICKR_API_KEY=""
export FLICKR_SECRET=""
export FLICKR_USER_NAME="Your human-readable name here!"
# This can be:
#
# - "read" for permission level 1, giving public and private read access
# - "write", permission level 2, giving "read" + writing permissions
# - "delete", permission level 3, giving "write" + deletion permissions
#
# NOTE: if you change this value at some point, you will need to
# request new credentials, as your access token and access token
# secret are tied to your requested permission level.
#
export FLICKR_PERMISSIONS="read"
# Unless you know better, keep this set to "oob", which tells flickr
# that this code uses an "out-of-band" authentication callback.
#
export FLICKR_CALLBACK="oob"
# These values are commented off. When you first run the FlickrApi's
# authentication, you will be given the actual values to use.
#
#export FLICKR_USER_ID=""
#export FLICKR_ACCESS_TOKEN=
#export FLICKR_ACCESS_TOKEN_SECRET=