I am trying to send sms and my url with numbers is "http://api.appname.my/sendSms.php?message=hello&phone=687985<6123488<60149041982" but it get shorten to this "http://api.appname.my/sendSms.php?message=hello&phone=687985" so why it is removing other numbers.Here is my code
  number = number + "60149041982"
    let url = "http://api.appname.my/sendSms.php?message=hello&phone=\(number)"
    Alamofire.request(url).response{ (responseObject) -> Void in
    print(responseObject)
    }
 
    