Questions tagged [mashape]

Mashape is an API marketplace where developers can find and consume cloud APIs, and that API providers can use to distribute, track and manage their public or private cloud services.

Mashape is an API marketplace where developers can find and consume cloud APIs, and that API providers can use to distribute, track and manage their public or private cloud services.

Developers that consume APIs have a unified place to consume a multitude of cloud APIs, tracking their usage analytics, and subscribe to pricing plans.

On the other side, developers that want to publish their cloud API to the public, or internally in private/partner mode, can use all the tools provided by Mashape to handle authentication, users, analytics and billing.

87 questions
1
vote
1 answer

Use Mashape with R

I'm trying to use the Mashape platform to access to different APIs with R (e.g. epguides or pipl). I could use directly the original APIs, but getting used to Mashape seems to be a good investment since it provides a unified access to a whole lot of…
Gratien
  • 227
  • 2
  • 9
1
vote
0 answers

Problems using Unirest 1.4.5 on Android SDK 5.0.2 ((Android Studio))

When i'm trying to send a request using the tutorial given by Mashape http://blog.mashape.com/using-unirest-java-for-your-android-projects/. try { JsonNode cuerpo=new JsonNode(jsonRespuesta); Map
1
vote
1 answer

converting mashape api response to php string

Below is my code, I am trying to get particular mashape api response (operator) in php string. require_once 'vendor/autoload.php'; $response =…
Pratyush Pranjal
  • 544
  • 6
  • 26
1
vote
1 answer

Caching Mashape API calls in Python

How can I cache Mashape API calls. I got the code below but it does not seem to be doing the caching. Mashape is using unirest to get the API response. def fetchMashape(url, headers): cached = unirest.get(url, headers=headers) #cache.get(url) …
cloudviz
  • 971
  • 4
  • 15
  • 40
1
vote
1 answer

Problems using Indy10 to access a Mashape API Service

I am trying to write a client application which consumes a Mashape API service using Delphi XE3 and Indy10, but I have run into a bit of a snag. Here is what I have tried: I placed TIdHTTP andTIdSSLIOHandlerSocketOpenSSL components on my form and…
nosx
  • 145
  • 1
  • 2
  • 9
1
vote
2 answers

Installing Unirest-Java to consume a Mashape API

I created this simple class: import javax.swing.JOptionPane; import com.mashape.unirest.http.HttpResponse; import com.mashape.unirest.http.JsonNode; import com.mashape.unirest.http.Unirest; import…
ManInMoon
  • 6,795
  • 15
  • 70
  • 133
1
vote
3 answers

Mashape Unirest Java : java.lang.NoClassDefFoundError

I'm building an application using Mashape's Unirest library(unirest-java-1.2.6.jar) . I'm getting NoClassDefFoundError during runtime. I tried CommonsWare's method. But it didn't work. Here is the screenshot of Java Build Path. Anything wrong in…
DroidLearner
  • 2,115
  • 5
  • 31
  • 50
1
vote
1 answer

Problems using Mashape API in .NET

I found some great code on the net for using the Mashape API to get a QR code. Here. Their code works great, but if I try and change it to use another Mashape, I get a "An exceptions occured during the operation, making the result …
1
vote
1 answer

Is is possible to use non-pip-installable modules on Heroku?

I really want to use the Mashape python module in an app I have on Heroku. https://github.com/Mashape/mashape-python-client-library However I've tried pip install mashape but I can't install it that way so I can't put it in my pip requirements.txt…
nickponline
  • 25,354
  • 32
  • 99
  • 167
0
votes
0 answers

mashape unirest php test

I have installed unirest though composer, but it does not return anything. Is there anything wrong with this simple code? require_once 'vendor/autoload.php'; $response =…
OhioStateB
  • 17
  • 6
0
votes
1 answer

Geting data from mashapi (No Filed INASTANCE)

I am new to mashapi and don't know to how fetch data form mashapi I add all jar to use Unirest library that use in mashapi. I am getting error java.lang.NoSuchFieldError: No field INSTANCE of type…
0
votes
1 answer

undefined method `map' api request

I followed tutorial how to integrate 3rd party api with a ruby on rails but I get an error undefined method `map' for {"number"=>12} permitted: false>:ActionController::Parameters which points to request.rb query_string = query.map{|k,v|…
Kristis
  • 347
  • 5
  • 20
0
votes
0 answers

How to get Mashape key to work with Javascript API

var nRequest = new XMLHttpRequest(); var nutritionalAPIData; var phrase = document.getElementById('foodSearchBar'); var link = 'https://nutritionix-api.p.mashape.com/v1_1/search/' + phrase +…
Raman Kaur
  • 65
  • 4
0
votes
1 answer

My AJAX call is not retrieving any data, just "undefined"

I had this working when calling the API for a random movie quote generator on Mashape.com. My initial intention was to build an app that would generate bible quotes. I'm using this marketplace page…
JackJack
  • 181
  • 1
  • 1
  • 20
0
votes
1 answer

Kong Enterprise Installation on Kubernetes

I've followed the instructions given in this link to setup kong on kubernetes container in my local machine. I'm able to access APIs behind kong through Kubernetes (minikube) IP. Now, I've enterprise edition (trial version) of kong. Without…