我正在开发一个iOS应用,我正在尝试将Instagram API集成到我的应用中,以便用户可以使用instagram登录,但是我收到一条错误消息,提示您必须包含有效的client_id
,{{1} }和response_type
参数
在我第一次运行项目时它正在工作,但是重新启动Mac后,在运行它时一直出现此错误。 下面是我的代码
redirect_uri
答案 0 :(得分:0)
您应该创建一个类名Constant,并在init中添加这些内容
并在youtube上观看此视频 https://www.youtube.com/watch?v=zB50DMlVRgE
import Foundation
struct INSTAGRAM_IDS {
static let AUTHURL = "https://api.instagram.com/oauth/authorize/"
static let APIURL = "https://api.instagram.com/v1/users/"
static let CLIENT_ID = "id of client signup in insta and get id"
static let CLIENTSERCRET = "secret of client signup in insta and get this"
static let REDIRECT_URI = "http://www.google.com"
static let ACCESSTOKEN = "access_token"
static let SCOPE = "follower_list+public_content"
}