TwilioDevEd / twiliochat-swift

Swift implementation of Twilio Chat
https://www.twilio.com/docs/tutorials/walkthrough/ip-chat/ios/swift
MIT License
46 stars 18 forks source link

Resolved issue while preparing httpBody for fetchToken URLRequest. #15

Open shubhamb-git opened 7 years ago

shubhamb-git commented 7 years ago

…d in TokenRequestHandler.swift class when we are passing [String:String] into this method it was returning only last parameter on dictionary there was a bug in Line no. 14 previously it was data = encodedKey + = + encodedValue; it should be data = data + encodedKey + = + encodedValue;