Questions tagged [runscope]

Runscope is a cloud based service that enables the monitoring, measuring and testing of Web APIs.

Runscope documentation can be found here.

27 questions
1
vote
2 answers

Configure a proxy to make a request or run a test on Runscope

I have not been able to find if there is a way to configure a proxy on Runscope (or using runscope-radar). This is exactly my problem: I want to make a test with this flow: make a request to our API and save some data make a request to an external…
LaiaPR
  • 11
  • 1
1
vote
0 answers

How to parse an XML response using Runscope

I have been using Runscope default library "marknote XML Parser" to parse XML documents. In all the endpoints so far it was working well. However in the new endpoint I am trying to parse it is parsing a null object. This is the code I am using: var…
awavi
  • 837
  • 3
  • 11
  • 23
1
vote
1 answer

Runscope complex initial variable

How can I initialize complex initial variable for my test. Something like: variables.set("token", md5("something" + md5("something" + somevalue + "some other value") + "some value one more time" + someVal));
Dmytro Zarezenko
  • 10,526
  • 11
  • 62
  • 104
1
vote
0 answers

System.Net.WebException when using HttpClient against Runscope bucket

I'm playing with Runscope using Mono 3 on the Mac. Using the code below I'm getting an exception: System.Net.WebException: Error getting response stream (Write: The authentication or decryption has failed.): SendFailure ---> System.IO.IOException:…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
0
votes
0 answers

Terraform: 400 Bad Request

I am using a provider for Runscope, here: https://github.com/Storytel/terraform-provider-runscope. It is working well although I am aware it states: For internal use only, no support provided I am monitoring 5 separate sites and each use the…
Sean
  • 1,151
  • 3
  • 15
  • 37
0
votes
1 answer

How to set variable in pre-request script in Runscope

In a pre-request script I want to set a variable to use then in my request. Let's say my pre-request script looks like this: var token = "x" variables.set("token", token); And if I want to use the variable {{token}} in the request itself, I am…
iczcezar
  • 1
  • 1
0
votes
1 answer

JSEncrypt Error [Uncaught ReferenceError: ASN1 is not defined] using JavaScript Interpreter

I wondered if you can help with an issue when using this library in the Runscope JavaScript interpreter(V8-compatible (version 3.28), sandboxed JavaScript interpreter). I think it's happening because the JSEncrypt code is expecting a…
user45097
  • 561
  • 2
  • 7
  • 16
0
votes
1 answer

Runscope Error contacting host SSL

I am using Runscope only for a short time now however it seems pretty straight forward. I have had no problem with other APIs, however for this current one I am having problems. The error I am getting is the following: Error contacting host SSL:…
L1ghtk3ira
  • 3,021
  • 6
  • 31
  • 70
0
votes
0 answers

Are Runscope Scheduled Tests running sequentially or Parallel?

Here is my situation . We are testing our API with runscope . the main steps are follows . Create an Order by User Driver Take the Order User Cancel the order taken by driver This process takes around 3 minutes to complete , i want to run a…
Kanishka Panamaldeniya
  • 17,302
  • 31
  • 123
  • 193
0
votes
1 answer

Runscope init timestamp variable before every request

I am using Initial Script to initialize few variables, one of them is a UTC timestamp connected value. I have 5 requests in my Test, first requests executed correct but last are not, because time connected variable is expired for API I test. I mean…
Dmytro Zarezenko
  • 10,526
  • 11
  • 62
  • 104
0
votes
0 answers

cURL post to PayPal succeeds while HTML Form post and RunScope post fail

I'm currently developing an integration with PayPal's Payflow Pro Gateway. I'm sending a request to PayPal to get their "Secure Token" so that I can use that to do the real transaction. A sample I found on SO works via cURL, but the original HTML…
John B
  • 20,062
  • 35
  • 120
  • 170
-2
votes
1 answer

I have the runscope api monitoring resources. I created these resources by using terraform. How can I cleanup these runscope services?

I created runscope api monitoring resources by using terraform. I want to cleanup those by using terraform. resource "runscope_test" "api" { name = "api-test" description = "checks the api is up and running" bucket_id =…
1
2