I try to access to a Google Form but the API is in Google Apps Scripts. So we can't access it with a PHP script.
I'm using Laravel and this package could do the job but it's not compatible anymore :
https://github.com/akaramires/laravel-googleforms
How can I execute a Google Apps Script to get responses (with files uploaded by user) in a specific Google Form ?
https://developers.google.com/apps-script/reference/forms/form-response
Any ideas ?
Regards
There are two possible ways that you could do this:
Consider deploying the Script as a Web App. In particular, have a look at the section Deploying a script as a web app. Deploying scripts in this way allows you to do GET or POST requests to execute the code inside Google Scripts on demand.
Look at using the App Scripts API. I've previously used this API to build multiple Google Forms rather than building each one manually.
Related
Using the Google Play Developer API, there seems to be plenty of ways to make edits to an existing app.
https://developers.google.com/android-publisher/api-ref
Looking through the API it seems all the API requests uses "packageName".
e.g.
POST https://www.googleapis.com/androidpublisher/v3/applications/packageName/edits
This indicates that you already need to have an app available, with at least 1 APK already uploaded.
This is fine for editing an existing app. However, how can I create a new app using the API, without an existing listing or APK added?
let me explain the situation.
I have two front-end apps build with vue, one for client and other for admin.
And I build rest api with CodeIgniter.
As you see I have a separated logic here.
When I run build for the two apps and upload them along with the rest api to the server.
It will not run !
There is No logic to Deploy Codeigniter
Simply deploy it.
I am confused about the features, functionality, and boundaries of a Google API project. A single Google API project can have many credentials.
If your apps will all be using the same APIs, why would you want to create separate projects?
When or under what conditions should you create additional credentials fo the same project?
Base on Google Doc: Before you can send requests to Google Apps Activity API, you need to tell Google about your client and activate access to the API. You do this by using the Google Developers Console to create a project, which is a named collection of settings and API access information.
As above, Each API project is a named collection of settings and API access information. You can read this
It seems like a lot has changed with the new Google Apps Marketplace. I'm trying to configure a setup URL for Google to redirect the user to in order to configure an application. When using a manifest in the past I was able to specify http://whatever.com/{domain}, {domain} being a dynamic piece of data. However, the new Google Apps Marketplace SDK does not use a manifest and gives an error when I try to include {domain} in the value. How can I achieve this? The documentation is very minimal.
For followup the standard is now ${DOMAIN_NAME}
I have made an app using jQuery mobile and phoneGap, and read its good to put Google Analytics on there. I just a little confused because most of the app (pages etc... ) runs from the index.html file on the phone. The only time the app communicates with the server is when it logs a user in and they do ajax requests to retrieve or put data to a database.
Can I still use the analytics package here? Or is the whole point of it to be used with an app where all the DOM etc is stored online?
Thanks
You can probably use the event tracking feature of Google Analytics to help you out here:
https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide
You basically just fire a js function and pass in descriptive strings and category I think for each of the interactions you want to track / report on:
_trackEvent(category, action, opt_label, opt_value, opt_noninteraction)
Hope that helps