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
2
votes
0 answers

Issues with importing _helpers in Google Datalab

Currently trying to run a script on Google DataLab. I am new to using Google Datalab so it is likely an experience issue using this. Any help is appreciated. The script tries to import _helpers from google.cloud but throws the following error:…
2
votes
2 answers

Apigee Proxy passing same host header to target

I have a simple apigee proxy, but I can see in the trace an issue where the Host header going to the target contains the host of the proxy itself. i.e. the target gets Host: xx.apigeename.com rather than: Host: my.awsservername.com The target is on…
Paul Deen
  • 455
  • 1
  • 5
  • 15
2
votes
1 answer

How to use TLS 1.2 in Visual Basic 6 (vb6) - REST

APIGee is migrating the request to TLS 1.2 OS: Windows Server 2003 !!! I have an old application developed in vb6, but it stopped working because of this new migration Here is my code Public Function GetCustomerName(ByVal pCPFCliente As String) As…
2
votes
0 answers

missing formal parameter error while executing a Nodejs(Puppeteer) class from Java class

I have a Javascript class, written in Puppetteer, which works fine if executed as a standalone. I'm trying to execute the script class from my Java class. For that i'm using the apigee-trireme library (running node.js scripts inside Java) But when I…
Diya
  • 43
  • 10
2
votes
1 answer

Using Apigee as auth store alternative to Auth0

Background I'm looking into securing a selection of APIs for a client. I'm pretty familiar with the Auth0 offering and quite confident that it will serve me well as an auth provider. The APIs will be deployed on GCP (Google Cloud Platform) and I've…
Frank
  • 590
  • 1
  • 8
  • 23
2
votes
0 answers

How to set logs for API proxy in apigee

How to setup logs in Apigee for set api proxy endpoint. I have set up a API proxy and need to track the proxy request and response. I have enabled the logs in the service in backend, I have to track the proxy calls and check the headers and body. I…
Ashwin
  • 98
  • 10
2
votes
0 answers

Apache Kafka integration to APIGEE gateway

I'm new to Apigee gateway. Is possible to integrate Kafka with APIGEE gateway for publish and subscribe. I need to subscribe Kafka topic from Apigee routing to route a message to different back end system. I mean the router should behave like a…
2
votes
0 answers

Batch insertion in Openedge DB using trireme-jdbc module in node.js

I have a scenario where I want to insert more than 100 records in one execution only. I am developing my app in Node.JS and using trireme-jdbc for jdbc connection to openedge DB and its not allowing to perform multiple records in single execution…
ANIL VISHVKARMA
  • 363
  • 1
  • 15
2
votes
0 answers

Connection failure node js to progress db without odbc connection (Using trireme)

I am able to connect progress db using node js with odbc connection. But, I am unable to connect without odbc connection. I found a node js module which helps to make this connection but it shows some errors like. C:\Program …
Anvesh Reddy
  • 171
  • 1
  • 5
2
votes
1 answer

Apigee BaaS and cursors

I am trying to use cursors to access large result sets but can't seem to get them to work (i.e. endless scroll). Here is my code thus far where cursor is a string that store globally: var options = { type: "users", client: myClient, qs:{…
MoreScratch
  • 2,933
  • 6
  • 34
  • 65
2
votes
1 answer

How to determine if a value is a number in apigee

http://apigee.com/docs/api-services/reference/conditions-reference in the condition reference of apigee, how can you determine if a value is a valid number (myNumber = %d) (myNumber ~~ "d") tried both…
Led
  • 662
  • 1
  • 19
  • 41
2
votes
1 answer

Query with "the" not returning results

I'm trying to select an entity with "The" as the first word of the title attribute but Usergrid seems to be ignoring it. For example, this query which is attempting to select "The Giver" /books?ql=select * where title contains 'the*' //returns no…
jeremylach
  • 75
  • 7
2
votes
0 answers

API management/proxy: worth it for UI-consumed API calls/internal API calls?

Are products like Wso2/Apigee and other "api management"/api proxy tools worth using (and do people actually use them) in the following two cases: API calls that are exclusively called by the UI of web-app API's consumed by small numbers of…
Meta_Is_Betta
  • 63
  • 1
  • 3
2
votes
1 answer

How to combine user- and client-level authentication in an API gateway?

We're looking to implement web (external user) SSO and an API gateway to support web apps and mobile apps, and potentially 3rd party apps and even B2B scenarios. My thought is to have the SSO gateway handle user-level access to websites and APIs,…
ChrisC
  • 2,393
  • 2
  • 18
  • 24
2
votes
1 answer

How to consume secured API from IBM MobileFirst using http adapters

I'm trying to invoke an API which is having authentication. I'm getting an error like "Http request failed: java.net.SocketTimeoutException:Read timed out". Generally when I run this url(http://samirkantalenka-test.apigee.net/zsubmitalv-3) on…
Venkatesh Voona
  • 423
  • 8
  • 27