Questions tagged [infobip-api]

33 questions
3
votes
0 answers

Can not get the confirmation message of ajax request to send sms?

I have a code below. When I submit the form AJAX I got the SMS, but confirmation message not displaying on user front end. Also, how can I get the cURL response result. I use var_dump($response), but it displays just bool(true) message sent or not…
Riyadh Ahmed
  • 1,139
  • 1
  • 9
  • 17
2
votes
1 answer

Node.js Http request returns 400 error when send Unicode(Bangla) character in body

I am having an issue when send Http request to Infobip SMS APi with Unicode character in body. I tried with axios and request module but both are not working for unicode value but it's working for normal english character. here is the code var…
naimjeem
  • 657
  • 6
  • 7
1
vote
1 answer

'InfobipApiClient' is not defined

File "python.py", line 31, in infobip_client = InfobipApiClient(api_key=INFOBIP_API_KEY) NameError: name 'InfobipApiClient' is not defined im creating a python telegram bot . which have capability to send message to a user. i get…
1
vote
0 answers

Detect Whatsapp image upload source

I am building an official Whatsapp channel for customer support. I am using Infobip messaging services and I want to identify two things from a whatsapp message: If the image uploaded by a Whatsapp user on an official whatsapp channel was taken in…
Rashmi Singh
  • 519
  • 1
  • 8
  • 20
1
vote
1 answer

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource, missing token ‘cache-control’ in CORS header

I have the following function which should pass a JSON value to an external API: ack_receipt(); function ack_receipt() { var app_name = "Test Trial Account for infobip"; $.ajax({ url: "http://api.infobip.com/2fa/1/applications", async:…
H Dindi
  • 1,484
  • 6
  • 39
  • 68
1
vote
1 answer

Compiler Error Message: BC30002: Type 'RestClient' is not defined

I am trying to integrate a bulk SMS API. After following their sample code, I am getting Compiler Error Message: BC30002: Type 'RestClient' is not defined. The code is as below <%@ Page Language="VB" Debug = "true" ContentType="text/html" …
Pope
  • 55
  • 2
  • 8
0
votes
0 answers

I have a problem when try to send SMS to my mobile by INFOBIP

I have a problem when send SMS I get 200 http status but message is not received to my mobile. THIS MY CODE try { // Create the connection to the Infobip API. URL url = new URL(BASE_URL + "/sms/2/text/advanced"); …
0
votes
0 answers

Infobip with aws to send files by whatsapp

I am trying to integrate infobip to my project but there is an error saying: Error al cargar o enviar el archivo: TypeError: infobip.InfobipClient is not a constructor. I have checked my credentials and it looks ok, but the error is still there. The…
0
votes
1 answer

How to send attachments with Infobip Email API?

I'm trying to send email message to multiple receivers with attachments trough Infobip. Because Infobip Email API doesn't support sending email to multiple receivers I'm sending email with RestSharp and I have stuck with how to send…
Matija Sestak
  • 393
  • 1
  • 10
0
votes
1 answer

infobip chatbot fetching data

TypeError: invokeMember (get) on com.infobip.bot.engine.anticorruption.external.coding.execution.CodingAttributeApi@5c7c1bc1 failed due to: Arity error - expected: 1 actual: 2 found a error while fetching data from api. i hit a api got back the…
0
votes
0 answers

Convert working AJAX post request to UrlFetchApp

I am learning the infobip API with documentation here I have the following working code in jQuery: function testSMS(){ var settings = { "url": "https://p932l.api.infobip.com/sms/2/text/advanced", "method": "POST", "timeout": 0, …
Barth
  • 11
  • 5
0
votes
1 answer

Infobip API. How to create list of list of objects by api

I would like to create custom attribute list of list of objects in Infobip by API. I have try to sent POST but in doesn't work. Can you give me please the example of POST request to create the list of the list. Thx! Off Doc:…
Motiio
  • 3
  • 1
  • 2
0
votes
0 answers

Issue adding Javascript variable to url on page load

I am trying to change the page url based on where the user is located. Using the ipapi, I am pulling the city name, and trying to insert it in the url as a variable when the page loads. For some reason, my page keeps refreshing continuously. Any…
Kyle White
  • 89
  • 5
0
votes
1 answer

arabic messages with postman received as '???????'

I need to send an Arabic message with postman. I recieve the text as ??????? instead of arabic characters. here's the body of my request in postman : { "authentication": { "username": "myusernam", "password": "mypassword" }, "messages": { …
safa
  • 1
  • 2
0
votes
1 answer

How to connect to API using Restsharp

I am trying to connect to an API using RestSharp however I am getting the following error: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because…
Walters
  • 119
  • 16
1
2 3