AnderGoig / SwiftInstagram

Instagram API client written in Swift
https://git.io/vdNAn
MIT License
578 stars 81 forks source link

createComment return error #20

Closed FrancescoZ closed 6 years ago

FrancescoZ commented 6 years ago

Checklist

Expected Behavior

Add a comment to a media

Actual Behavior

Return error "Missing "text" attribute"

Steps to Reproduce the Problem

  1. Login using the API with scope .comment .publicContent
  2. Call createComment

Specifications

FrancescoZ commented 6 years ago

I added this code every time I do a post request:

private func buildHTTPBody(withPatameters parameters: Parameters? = nil) -> Data? {
        var postString = "access_token=" + retrieveAccessToken()!
        parameters?.forEach({ (arg) in
            let (key, val) = arg
            postString.append("&" + key + "=" + String(describing: val))
        })
        return postString.data(using: .utf8)
    }
AnderGoig commented 6 years ago

Hi @FrancescoZ, I'm sorry for the late response.

Huge thanks for letting me know that issue, I've also found more problems in the process of fixing it. I'm releasing a new version ASAP which should fix your problem.

Thanks again! 🤘

AnderGoig commented 6 years ago

Fixed in v1.1.0 👈