Gmail hesabımdan e-posta okumak için oAuth2.0 kullanıyorum. Ve işte benim kodLütfen kodu kopyalayın, uygulamaya geçin ve yapıştırın ama nerede?
oauthswift = OAuth2Swift(
consumerKey: "242468529977-xxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com",
consumerSecret: "GfGVl_xxxxxxxxxxmjnAX",
authorizeUrl: "https://accounts.google.com/o/oauth2/auth",
accessTokenUrl: "https://accounts.google.com/o/oauth2/token",
responseType: "code"
)
oauthswift?.allowMissingStateCheck = true
let _ = oauthswift?.authorize(
withCallbackURL: URL(string: "urn:ietf:wg:oauth:2.0:oob")!, scope: "https://www.googleapis.com/auth/gmail.metadata", state: "",
success: { credential, response, parameters in
let parameters = Dictionary<String, AnyObject>()
// Multi-part upload
print(credential)
print(response)
},
failure: { error in
print("ERROR: \(error.localizedDescription)")
}
)
ama izin izin sonra bana bu ekranı
gösteren ve diyor 'Bu kodu kopyalayıp uygulamaya geçin ve oraya yapıştırın.' ama kodun nereye yapıştırılacağını bilmiyorum.
Jecky consumerSecret Handler yöntemi kullanmak olmalıdır: "", anahtar değerini kaldırın ve böylece benim için onun çalışmalarını deneyin –