Hi,
I have one more query on this, My client is not supporting SMPP protocol and we should use the third-party API code and send the SMS to customers so In this process I have to pass the parameters an API key, message and mobile number to Service provider from an adobe campaign through HTTP protocol .
So which connector is support for HTTP protocol in adobe campaign SMS channel configuration and if any connector is support the HTTP protocol then how to pass the above parameters.
Please help me the how to achieve above requirement.
Please refer the sample code provided by Service provider in JSp .
if(request.getParameter("btnEnviar") != null){
String mensaje = request.getParameter("txtMensaje");
String numero = request.getParameter("txtNumero");
String urlRequest="http://smsmasivos.com.mx/sms/api.envio.new.php";
String urlParametros = "apikey=" + URLEncoder.encode("8dd979e51402a36ff8217f8fa30788ecb9f3d1f6", "UTF-8") +
"&mensaje=" + URLEncoder.encode(mensaje, "UTF-8") +
"&numcelular=" + URLEncoder.encode(numero, "UTF-8") +
"&numregion=" + URLEncoder.encode("52", "UTF-8");
Thanks & Regards
Jitendra