我想在给我UID时获取谷歌个人资料图片。 我有this参考,但我知道如何点击这个网址。 请有人给我一些例子。
修改 这是我的代码
var googleImageUrl: URL?{
let urlString = "https://www.googleapis.com/plus/v1/people/\(uid)?fields=image&key=AIzaSyBfjHpl8DjU0IGw9mXbvK6HoNpY"
return URL(string: urlString)
}
Alamofire.request(url)
.validate()
.responseJSON(completionHandler: { (response) in
if response.result.isSuccess {
let json = response.result.value as? [String: Any]
} else {
let apiError = ApiError(response: response)
}
})
当点击这个api时,我总是得到错误。为什么我没有收到回复?
答案 0 :(得分:0)
您有两种选择:
使用Googles API,需要API密钥:
https://www.googleapis.com/plus/v1/people/{UID}?fields=image&key={YOUR_API_KEY}
使用不需要任何API密钥的Googles Picasaweb:
http://picasaweb.google.com/data/entry/api/user/{UID}?alt=json
获取图片的代码:
// Check what you want to return in the onCompletion and use it
func getImage(uid: String, onCompletion: @escaping (String) -> Void, onError: @escaping (NSError) -> Void) {
let url = "https://www.googleapis.com/plus/v1/people/\(uid)?fields=image&key=AIzaSyBfjHpl8DjU0IGw9mXbvK6HoNpY"
let headers = [
"Content-Type": "application/json"
]
Alamofire.request(url, method: .get, parameters: nil, encoding: JSONEncoding.default, headers: headers)
.responseJSON { response in
if let object = response.result.value as? [String:Any] {
print(object)
// use the onCompletion in here
}
}
}
答案 1 :(得分:0)
您列出的参考号指向Google People API,该API与Google+ People API不同。如果您想使用Google People API,则应使用https://people.googleapis.com/v1/people/{UID}?personFields=photo&key={YOUR_API_KEY}
以下是官方示例:https://developers.google.com/people/v1/read-people#get-the-person-for-a-google-account