что я делаю не так?
открывается окно и показывает мне: {"error_type": "OAuthException", "code": 400, "error_message": "Недостаточная роль разработчика"}
var oauthswift = OAuth2Swift(
consumerKey: "529815800985564",
consumerSecret: "3ad7d985faad1ddd06acba6b2227d0da",
authorizeUrl: "https://api.instagram.com/oauth/authorize",
responseType: "code"
)
let handle = oauthswift.authorize(
withCallbackURL: URL(string: "https://badyi.github.io")!,
scope: "user_profile,user_media", state:"1") { result in
switch result {
case .success(let (credential, response, parameters)):
print(credential.oauthToken)
// Do your request
case .failure(let error):
print(error.localizedDescription)
}
}