将我的代码转换为 swift 后 3 Twitter 无法获取用户个人资料图片

After convert my code to swift 3 Twitter not get the users profile image

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

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

let profilepic = FHSTwitterEngine.shared().getProfileImageURLString(forUsername: FHSTwitterEngine.shared().authenticatedUsername, andSize: FHSTwitterEngineImageSizeOriginal)
print("profile pic is \(profilepic)")