InstagramScope
public enum InstagramScope : String
Login permissions (scopes) currently supported by Instagram.
-
To read a user’s profile info and media.
Declaration
Swift
case basic -
To read any public profile info and media on a user’s behalf.
Declaration
Swift
case publicContent = "public_content" -
To read the list of followers and followed-by users.
Declaration
Swift
case followerList = "follower_list" -
To post and delete comments on a user’s behalf.
Declaration
Swift
case comments -
To follow and unfollow accounts on a user’s behalf.
Declaration
Swift
case relationships -
To like and unlike media on a user’s behalf.
Declaration
Swift
case likes -
To get all permissions.
Declaration
Swift
case all = "basic+public_content+follower_list+comments+relationships+likes"
View on GitHub
InstagramScope Enumeration Reference