AnderGoig / SwiftInstagram

Instagram API client written in Swift

Home Page:https://git.io/vdNAn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

createComment return error

FrancescoZ opened this issue · comments

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

  • iOS Version: 11.2
  • Device(s): iPhone X

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)
    }

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! 🤘

Fixed in v1.1.0 👈