Questions tagged [apigee]

You can get Apigee product related answers and support on the Apigee Community at http://community.apigee.com Apigee is part of Google team, that produces and sells an API Management Platform. Products include an API communications gateway, a backend-as-a-service App Services / REST-accessible JSON store. Use this tag for questions about Apigee products; and also indicate the Apigee product such as API Dashboard or Edge.

The Company

Apigee is a company that produces and sells an API Management Platform. The central product is an API communications gateway (Apigee Edge), and there is also the backend-as-a-service App Services thing, which is a REST-accessible JSON store. Use this tag for questions about Apigee products; and also indicate the Apigee product such as API Dashboard or Edge.

Apigee Edge

Think of this as a transparent HTTP proxy server for API calls. Operators can configure the Gateway to do "anything" when an incoming API call is received, including dynamic routing, data transformation, security mediation (authentication or authorization), rate limiting or quota enforcement, caching, response data masking, response data augmentation, and more.

App Services

App Services is the commercial version of the usergrid open-source project. To a developer, it looks like a JSON store of arbitrary scale. It's accessible via a REST interface, GET/PUT/POST/DELETE, and includes a built-in set of resources, accessible via different /paths in the URL, to store things like users, activities, and so on. You can define additional resource types as extensions to that base model.

743 questions
3
votes
1 answer

Node JS Trireme include module

I'm running Node JS with https://github.com/apigee/trireme from Java, inside the JVM. I have a directory that looks as following: node/ -test_file.js -test_somemodule.js -somemodule/ -somemodule/index.js -somemodule/... I have no problem running…
Zackline
  • 704
  • 7
  • 25
3
votes
2 answers

Apigee doesn't seem to support the OAuth 2 specification, is there a reason why?

We're making requests for bearer tokens using client_credentials OAuth 2 grant flow with Apigee. According to the spec: 4.4.2. Access Token Request The client makes a request to the token endpoint by adding the following parameters using the…
Michael
  • 90
  • 7
3
votes
1 answer

How to get the correct proxy URL in Apigee?

In my Apigee API Proxy, I need to get the environment URL that is defined in my configuration, so that I can send it as part of the response. For example: http://myorg-test.apigee.net/pricing However, when I try to get it using proxy.url, I get an…
Victor Lyuboslavsky
  • 8,914
  • 22
  • 77
  • 122
3
votes
5 answers

Invalid API call as no apiproduct match found.

I have just started coding with APIgee I found this error can anyone help me with this "faultstring":"Invalid API call as no apiproduct match found", "errorcode":"keymanagement.service.InvalidAPICallAsNoApiProductMatchFound"
user3706662
  • 51
  • 1
  • 4
3
votes
1 answer

Push notification is not being delivered when iPhone comes back online

I'm testing Apple push notifications for our iPhone app. The app deployment target is 6.1 and the iPhone is running 7.1.1. We use Apigee as our push notification provider. The phone receives notifications when it's online via cellular and wi-fi,…
3
votes
7 answers

Cannot login to Apache Usergrid deployed on Tomcat7

I downloaded and built Apache Usergrid on my Ubuntu 14.04 LTS and deployed the ROOT.war on my local tomcat7 server as per instructions given at https://usergrid.incubator.apache.org/docs/deploy-local/. I copied usergrid-deployment.properties file to…
prvishnu
  • 31
  • 2
3
votes
2 answers

One Apigee Api Proxy with a different target endpoint for each environment

I am an Apigee newbie. We have our environments in our host names, for example: something.int.other.thing.co.uk something.test.other.thing.co.uk something.stage.other.thing.co.uk something.prod.other.thing.co.uk I would like to be able to map them…
atkuzmanov
  • 91
  • 10
3
votes
1 answer

Returning Large Payload with apigee Proxy

We're migrating our services to apigee and we're running into an issue. We have a service that returns large payloads (>55MB) and when I pass it through a defined apigee proxy, it would return: { "fault": { "faultstring" : "Body buffer…
Dexter Legaspi
  • 2,452
  • 1
  • 23
  • 24
3
votes
2 answers

Authenticating applications via cURL returns Unexpected character code 39

I'm attempting Authenticating applications using the cURL example in the documentation [1] to request an access token. I'm getting the following…
user1048553
  • 146
  • 1
  • 3
3
votes
3 answers

What is the unique ID for API Products in the Apigee Edge server API?

I am using the REST API for the Apigee Edge server, and am getting the details of the API products for my organization: https://api.enterprise.apigee.com/v1/organizations/chrisnovak/apiproducts/PremiumWeatherAPI Here is the response: { …
3
votes
4 answers

Installing Apigee on my own server

Is it possible to download and install Apigee on your own server? If so, is there any documentation on how to do this? I have looked around on the Apigee.com web site for details, and I'm aware that there is an Apigee GitHub repo, but I'm not sure…
jcmturner
  • 113
  • 1
  • 3
2
votes
1 answer

Cross-domain cookies in preflight requests

Two components: A React single page app on https://react.mycompany.com A Apigee API proxy on https://apigee.proxy.com On login Apigee sets a jwt cookie using the Set-Cookie header: Set-Cookie: jwt={jwtoken};secure;httponly;path=/;samesite=none On…
Moritz Schmitz v. Hülst
  • 2,260
  • 3
  • 24
  • 43
2
votes
0 answers

Extract List with ExtractVariables & JSONPath from JSON

I'm trying to extract a list from a JSON response and put it inside a variable so that I can later put this list as a claim in my custom generated JWT with GenerateJWT. My current problem is that I'm always ending up with a stringified array as a…
tpschmidt
  • 1,433
  • 1
  • 10
  • 19
2
votes
0 answers

How to dynamically update configuration property in YAML file using node.js application

I want to update the attribute dynamically in YAML configuration file using node.js application. I have my secrets configured in KeyVault and it has been referenced in App Service configuration. I want to update those secrets in YAML file through…
simbu94
  • 932
  • 2
  • 9
  • 21
2
votes
2 answers

How to Validate Apigee Edge generated JWT Token from .NET/C# code?

​I have created a proxy in Apigee Edge to Generate JWT token. I have created another proxy in Apigee Edge Validate the JWT token, and I am able to Validate using that. Now I am unable to Validate the JWT Token completely from .NET/C# code. Below is…
1 2
3
49 50