Questions tagged [apigee-baas]

Apigee's Back End As a Service offering which provides persistent storage exposed as REST services

46 questions
4
votes
2 answers

unable to post file+data using python-requests

I'm able to post file using curl curl -X POST -i -F name='barca' -F country='spain' -F file=@/home/messi/Desktop/barca.png 'http://localhost:8080/new_org/hel/concerts' Which I can get (file) as curl -X GET -H 'Accept: image/png'…
Lionel
  • 604
  • 9
  • 26
3
votes
1 answer

Usergrid node.js usergrid.init() error

I start to use apigee and I use the baas withe usergrid and the node.js sdk when I use my file in local and make http request there is no problems but when i try to upload the node.js file with : apigeetool deployproxy -u USERNAME -p PASSWORD -o ORG…
tazee
  • 390
  • 2
  • 7
3
votes
1 answer

Invalid API Request for Apigee API

I have an API which requires a API key to get through. I have set the same verification policy to my set of API's. However, some of my API's work and the other do not work giving me the below error. What might be the cause. { fault: { …
ZZzzZZzz
  • 1,800
  • 3
  • 29
  • 51
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

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

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
1 answer

How to get the parent elements by quering the child elements in the json data.Explanation is given below

I am new to Apigee,I had tried a query to extract the value from the json data child and i need to get the parent element from the json data. JSON is Here: { "Booksstall": [ { "serialId": "10123456", "Name": "magic" …
1
vote
1 answer

How to set dynamic LoadBalancer for HTTPTargetConnection in APIGEE?

I want to have a different server for my APIGEE load balancer Based on an if/else condition. This is my current config that works a single server name (non dynamic):
Sapnesh Naik
  • 11,011
  • 7
  • 63
  • 98
1
vote
0 answers

Apigee: Access a PDF in a Python callout

I have public API's and I would like to set a quota policy based on the type of consumption. The user can hit the API with an image or a PDF(multi-page). If it is a PDF, based on the number of pages the quota counter should get updated. I want to…
moonwalker7
  • 1,122
  • 3
  • 11
  • 29
1
vote
1 answer

Oauth2 with OpenId connect

I am asking you today because I am at a dead end. I have missed piece in the logic of Oauth2 and OpenID connect in apigee. I understand that an application request Openid connect to have the profile of the loggedin user and that OAuth2 offers a way…
Adouani Riadh
  • 1,162
  • 2
  • 14
  • 37
1
vote
0 answers

Apigee search for string with ampersand

I can't find a way to search for entities where the name contains an ampersand. I have tried encoding the ampersand as & but it's not working. How can I get this to work?
MoreScratch
  • 2,933
  • 6
  • 34
  • 65
1
vote
2 answers

Run multiple Usergrid nodes?

Try to deploy multiple Usergrid containers on different machines, and make them point to a Cassandra cluster. But I cannot find documents about running multiple Usergrid nodes, and I only found instructions about Cassandra cluster. Is this the right…
zeck
  • 769
  • 1
  • 7
  • 13
1
vote
0 answers

How to use hierarchical group in apache usergrid?

According to usergrid documentation - Groups are hierarchical. Every member of the group /groups/california/san-francisco is also a member of the group /groups/california (https://usergrid.apache.org/docs/user-management/group.html) Based on…
akm
  • 41
  • 1
  • 4
1
vote
1 answer

Usergrid query on unknown sub properties

I'm trying to query a collection of data with entities that contain the "related" property: ...,{ related : { global: [{name: "foo"}, {name: "bar"}] }, { local: [{name: "bar"}] }, { random: [{name: "foo"}] }, { dingbat:…
jeremylach
  • 75
  • 7
1
vote
1 answer

Upload Multiple Assets to an Entity

On documentation it is said that Only 1 asset can be attached to an entity. Is there any way to attach multiple images to an entity?
Lionel
  • 604
  • 9
  • 26
1
2 3 4