Questions tagged [remoteapi]

69 questions
1
vote
1 answer

Pushwoosh - no subscribers are added in android

I am trying to add new subscriber with pushwoosh remote api services. RegisterDevice POST https://cp.pushwoosh.com/json/1.3/registerDevice { "request": { "application": "XXXX-XXXX", // THE PROJECT ID ON PUSHWOOSH "push_token":…
shay
  • 2,021
  • 1
  • 15
  • 17
1
vote
0 answers

PushWoosh - Location based notifications via Remote API

I am looking to filter notifications based on users current location. I get that I can set geozones through the PushWoosh web-site, but I can't seem to find any way to do this through the remote API. I want to do something like…
1
vote
1 answer

Using host env variable with docker remote API

I'm trying to use the target host's env variable to parametrize my container when launching it with the remote API, but none of these worked ... "Env": [ "ENV_VAR=`$TEST`", "ENV_VAR2=$TEST" ], Does anyone have an idea how to…
pedro
  • 11
  • 2
1
vote
1 answer

Does RemoteApiOption method useServiceAccountCredential works with P12 file?

Does useServiceAccountCredential works with P12 file. I am trying to use it in Java and get error com.google.appengine.repackaged.com.google.api.client.http.HttpResponseException‌​: 302 Found
Manisha Awasthi
  • 449
  • 1
  • 5
  • 16
1
vote
1 answer

"working outside of application context" in Google App Engine with Python remote API

I deployed one simple project on Google App Engine and there the project is working. Before I was able to get list of users from datastore through the remote API console , but now this no longer works. To start the remote API console I'm connecting…
makkasi
  • 6,328
  • 4
  • 45
  • 60
1
vote
0 answers

Accessing Docker ( installed with Kitematic/MacOSX) via Remote API

How can I access my Docker artifacts installed via Kitematic on MacOSX using Remote API (http) Currently I see that it is availble via tcp... My docker env. details DOCKER_HOST=tcp://182.159.98.120:2375…
krckumar
  • 544
  • 4
  • 21
1
vote
2 answers

Remote API, Objectify and the DevServer don't like transactions?

I am using objectify 4 to write to the HRD datastore. Everything works fine in unit tests and running the application in devserver or production. But when I try connect using the REMOTE API to the devserver datastore, an error is thrown when the…
koma
  • 6,486
  • 2
  • 27
  • 53
1
vote
0 answers

remote api gae ancestor query

I tried to use remote api and get exception, when execute query with ancestor. Exception: query must have same application id (app) as the contained ancestor key: query.app:'firtsAppId' != query.ancestor.app:'secondAppId' where firtsAppId,…
Vova
  • 71
  • 1
  • 2
1
vote
1 answer

Does Jenkins Remote API support running all jobs inside a view?

I am trying to automate the execution of our Jenkins builds by calling the Remote API from inside a Python or shell script. When we release software, we create a new "view" inside Jenkins (e.g., 2012-12-02-oursoftware-release) and then we create…
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
1
vote
1 answer

Using GAE remote api for debugging from localhost - Connecting too late?

Trying to use Google App Engine's remote_api so that we can do line-by-line debugging through the IDE. The remote api works great at first. The application is able to successfully retrieve information from the database. The error occurs when wepapp…
Chris Dutrow
  • 48,402
  • 65
  • 188
  • 258
1
vote
1 answer

Automatic setup of App Engine Remote API on webapp2

Configuring the remote_api for AppEngine on Python 2.7, I need to set up the configuration calls to create and configure the dabase call stubs so that I don't have to replicate the configuration call in every REST resource and handler. The code I…
Juan Carlos Coto
  • 11,900
  • 22
  • 62
  • 102
1
vote
0 answers

App Engine Can't get appId from Remote API Java

I have used Remote API to have access of Remote Datastore, with authentication options: Google Account API. In my code i have done proper servlet entries in web.xml. Then too, I am getting error log as: Uncaught exception from servlet …
Gaurav
  • 107
  • 1
  • 8
0
votes
0 answers

Fetching from a JSON file with json server?

I am a complete beginner to front end and I have a lot of things to figure out. However, in a Vue.js project I'm required to fetch data from a json file as it was from a remote source. I decided to use json server. However the root of the json file…
0
votes
1 answer

GAS Wialon Local Remote API: Retrieve login data

Good day, I have a Wialon Local server (GPS monitoring system) and am planning to update a shared Google sheet using time-driven installable triggers. As per the Wialon documentation, I am able to get the desired response when entering my API call…
Shalin
  • 105
  • 2
  • 14
0
votes
0 answers

How to display data from controller to blade view and how to do routings from remote api? Laravel

WelcomeController class WelcomeController extends Controller { public function ajaxRequestPost(Request $request){ $request->session()->put('data', $request->all()); return redirect('dashboard'); } …
Luffy
  • 15
  • 3