Я переписываю свои запросы на график с помощью последней версии Swift3. Я следую руководству, найденному здесь - https://developers.facebook.com/docs/swift/graph.
fileprivate struct UserProfileRequest: GraphRequestProtocol {
struct Response: GraphResponseProtocol {
init(rawResponse: Any?) {
// Decode JSON into other properties
}
}
let graphPath: String = "me"
let parameters: [String: Any]? = ["fields": "email"]
let accessToken: AccessToken? = AccessToken.current
let httpMethod: GraphRequestHTTPMethod = .GET
let apiVersion: GraphAPIVersion = .defaultVersion
}
fileprivate func returnUserData() {
let connection = GraphRequestConnection()
connection.add(UserProfileRequest()) {
(response: HTTPURLResponse?, result: GraphRequestResult<UserProfileRequest.Response>) in
// Process
}
connection.start()
Однако я получаю эту ошибку в методе connection.add:
Type ViewController.UserProfileRequest.Response does not conform to protocol GraphRequestProtocol.
Я не могу понять, что здесь изменить. Похоже, что руководство разработчика не обновлено на Swift3, но я не уверен, что это проблема.
Кто-нибудь может увидеть, что здесь не так?
Спасибо.