Questions tagged [getresponse]
139 questions
1
vote
0 answers
Java HttpsURLConnection instance not giving response code
I am trying to get a token for an API with this code and it throws exception when it tries to get and check the response code. It is my understanding that url.openConnection() does not actually connect? I tried url.connect() but that didn't work…

paul
- 135
- 1
- 10
1
vote
0 answers
The request was aborted: Could not create SSL/TLS secure channel after setting SecurityProtocol
There are many questions like this, but answers which should help me, they did not do that.
private static string GetWebText(Uri url)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
…

Blagalin
- 799
- 2
- 8
- 21
1
vote
2 answers
Using Guzzle with GetResponse API to save custom field?
I am sending a post request to the GetResponse API. Everything works fine until I add a custom field (customFieldValues) to save along with my new email contact.
$body_data =
[
'name' => $input['name'],
…

Chris
- 764
- 1
- 10
- 24
1
vote
2 answers
Get the Session info from Request.GetResponse()
I have an aplication that loads many asp.net pages and in every loop I need to take some information from the Sesion of the loaded page.
How can I do that?
example:
WebRequest request = HttpWebRequest.Create(url);
WebResponse response =…

Lug
- 420
- 5
- 15
1
vote
2 answers
GetResponse API & PHP
I am trying to make a simple CURL call to GetReponse using PHP and I must be doing something wrong. Each time I try to use my clients access token it bombs out. If I hard code my company API key into the place where I've put the xxxxx's it works…

LargeTuna
- 2,694
- 7
- 46
- 92
1
vote
0 answers
Getting this error in VB.NET when using HttpWebRequest: "You must write ContentLength bytes to the request stream before calling [Begin]GetResponse"
I have search through the internet and Stack overflow for a solution to this issue and have tried various solutions but none of them has worked.
Basically, I have a Windows Application, written in VB.NET, when the button is clicked, it does the…

will_k
- 11
- 2
1
vote
2 answers
How to add multiple contacts at a single call through Getresponse api
I am trying to add subscriber to list through Getresponse api for single contact subscription to list i have to call api like this
$getresponse = new GetResponse(api key);
$result = $getresponse->addContact(listid,
…

Punabaka Abhinav
- 502
- 1
- 9
- 17
1
vote
0 answers
WebRequest.GetResponse intermittent timeouts
I am using some inherited code to access a trading API and get intermittent timeouts at the .GetResponse call.
As its intermittent I did think its resource related - other articles refer to the importance of closing disposable objects, so I have…

Andy Charity
- 33
- 1
- 6
1
vote
2 answers
Selenium-Webdriver when i click something How to post and get response from server
When I click something on a web page I get a response from the server, but how can I catch and validate that response?
For example if I click the 'Flag' option in my webpage I get the following JSON response, but how can I validate it?
I tried this…

raj kumar
- 27
- 2
- 9
1
vote
1 answer
Getresponse lookup contact to see if exists
I have this code to find a contact in GetResponse to see if it exists.
The first part (getting the campaign) works, but getting the contact fails in an exception: Request have return error: Invalid params:
user2421976
1
vote
1 answer
WS - Apache CXF: Response.get() in AsyncHandler returns Object instead of message
I am a beginner in WS and CXF. I would like to create asynchronous client using AsyncHandler but I am not able to get response message.
I have web service class and interface generated with CXF wsdl2java like the…

Fenix
- 2,271
- 1
- 16
- 24
1
vote
2 answers
A timed out Error on GetResponse() in third run
I have a thread that runs periodically every 60 seconds. This thread is getting response from a web url. Everything is fine until the third run. It doesn't work anymore and shows this error :
"The operation has timed out"
This is my code and…

mrasoolmirza
- 787
- 1
- 6
- 22
1
vote
1 answer
Getresponse API 2 (Adding Custom fields and contacts using PHP)
Im new to coding and web development as it is and diving into the deep end with API's is a thing i wish i never had done! However being said i have progressed further than expected. I am now having problems when trying to add custom fields to the…

Birdy
- 775
- 1
- 6
- 21
1
vote
0 answers
GetResponse move_contact() and set_contact_cycle() API error
I have a question about API and autoresponders.
I'm using 2 different campaigns (campaign A doesn't have an autoresponder while B does). I'm also using the move_contact() API to move the same contact from campaign A to campaign B via my website. I…

Genioblu
- 51
- 2
1
vote
1 answer
getresponse's php wrapper' addContact() returns NULL. Value not documented in their API
I'm trying to add some contacts using the php wrapper of the getresponse mailer. On their official API docs, it says addContacts() should return a code and a message, but in my case, it returns NULL, which has grown quite upsetting. I can't really…

Tudor Leustean
- 517
- 3
- 15