0

我正在使用FHSTwitter Engine. 在那,我可以Username通过使用FHSTwitterEngine.shared().authenticatedUsername它来获得。但是 FHSTwitterEngine.shared().getProfileImageURLString(forUsername: username as String, andSize: FHSTwitterEngineImageSizeOriginal在这我得到了错误,比如Error Domain=FHSErrorDomain Code=204 "The request did not return any content.如何获取个人资料图片?但它适用于 swift 2.0。如何解决这个问题。

4

1 回答 1

0

当用户名不正确时会发生此错误。这应该有效。

let profilepic = FHSTwitterEngine.shared().getProfileImageURLString(forUsername: FHSTwitterEngine.shared().authenticatedUsername, andSize: FHSTwitterEngineImageSizeOriginal)
print("profile pic is \(profilepic)")
于 2016-10-13T17:46:00.107 回答