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.

838 questions
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

Apigee route post to get api

I have a GET API exposed as (www.example.com/find/cola?id=lite,fiz) From Apigee I want to expose a POST API instead of GET like (www.example.com/api/find) Body {id:['cola','fiz']} Is it possible to accept post api and transform and route as get from…
Sumeet Kumar Yadav
  • 11,912
  • 6
  • 43
  • 80
2
votes
1 answer

Apigee as Authorization Server

I am trying to validate a JWT token from springboot generated by one of my custom apigee proxy. Wondering whether I can use spring security and use Apigee as authorization server to validate JWT? Here is my web security…
2
votes
0 answers

Post request for an api works with restTemplate but throws proxy error with webClient

I'm trying to call an api with WebClient and it throws 404 with the below error message {"fault":{"faultstring":"Unable to identify proxy for host: localhost:9943 and url:…
Priya
  • 59
  • 7
2
votes
1 answer

Delete an analytics region from my Apigee Paid Organization

I am struggling to delete the analytics region from my Apigee Paid organization I have found the following code DELETE https://apigee.googleapis.com/v1/{name=organizations/*/analytics/datastores/*} But not sure where/how to run this. It is failing…
2
votes
1 answer

How to create Apigee KVM

I am trying to create KVM for apigee but not sure. since I am new to apigee. Could anyone please guide how to create KVM (public/private) key pair? Appreciated! Thanks.
harper
  • 83
  • 7
2
votes
2 answers

Does apigeex offer hosting with different cloud provider

Does apigee x offer hosting with different cloud providers? Can one try a Customer-managed runtime plane such as AWS machines? What are necessary considerations to keep while migrating apigee edge to apigee X
Suhas Kashyap
  • 398
  • 3
  • 14
2
votes
3 answers

Split and Join with Variable in Javascript

I have the ff. JSON payload of an Array { "Meta": { "LastAvailableDateTime": "", "FirstAvailableDateTime": "", "TotalPages": 1, "Count": 2 }, "Links": { "Next": null, "Previous": null, …
iamjoshua
  • 1,157
  • 3
  • 16
  • 33
2
votes
0 answers

Getting 502 Bad Gateway from an Apigee server

My application is running Node.js v12.22.1 with Express, MongoDB and Vue.js. An Apigee server is serving as a gateway between the backend and the client. If a request takes more than 2 minutes to complete (which can happen if the backend calls…
DIRECTcut
  • 140
  • 9
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
  • 2,479
  • 2
  • 17
  • 30
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…
Abhinaba Nag
  • 57
  • 10
2
votes
1 answer

Shouldn't mobile clients terminate connections to API?

I'm developing an iOS-app that uses an API. The API has a text search, and we've implemented a debouncer to ensure that we don't perform a search every time the user writes a character in the search field. We wait 0.2 seconds after every each…
Sti
  • 8,275
  • 9
  • 62
  • 124
2
votes
0 answers

How do I write the following APIGEE related curl command in Java?

How do I write the following APIGEE related curl command in Java curl -X POST -H "Content-Type: application/x-www-form-urlencoded" \ https://{org-name}-test.apigee.net/oauth/client_credential/accesstoken? grant_type=client_credentials \ -d…
San4musa
  • 277
  • 2
  • 12