Google Directory API nodejs - node.js

I have been trying to make a script in nodejs to take a email and add it to google groups by the api and delleting it after a time i couldn't get it working i have tried everything but could not get it to work any help would be good
thanks in advainc.

Related

I have a problem with my NODEJS API on planetHoster

I created my very first NODEJS API. Locally, it works well but I just hosted it on planetHoster and it doesn’t work anymore. When I enter my query, I find the error "Cannot GET/Nodev2/idcc/list" then my route was functional locally. Do you have any assumptions? Thank you in advance!
I can share my code if you want see
I tried to change directory/file names

How can I connect to the google search ads 360 api via a python script?

I have to build a data pipeline which downloads reports from google search ads 360, processes them and saves them in google big query. Because we're planning on migrating this to aws, it has to be done via python script which calls the sa 360 api. I have scoured the documentation and I can't find a programmatic way to make this api call. the only thing I've found is a way to get an access token manually by running an outdated python 2.7 script (https://developers.google.com/search-ads/v2/prereqs#install-sa360api.py). This script redirects you to a sign in page which the authorized google user has to click on in order for the script to receive an access token and a refresh token.
I was hoping that once I had this refresh token, I would be able to use it programatically every time I connect, but after attempting to get a new access token using this refresh token I got a mysterious "invalid_grant" error even though I replicated the get_refresh_token request from the sa360api.py script exactly. Having read up on this "invalid_grant" error it seems there are a number of causes, but I don't think I have met any of the criteria: (https://blog.timekit.io/google-oauth-invalid-grant-nightmare-and-how-to-fix-it-9f4efaf1da35).
Any help and examples would be much appreciated.

How to use users custom name in Twilio Programmable video with node js

My script is working perfect, i am using this sample : https://github.com/TwilioDevEd/sdk-starter-node
i tried everything to connect users with custom name, but i cant do it. i am new in node js
you can see code at github
https://github.com/TwilioDevEd/sdk-starter-node/blob/master/public/video/quickstart.js
it is auto generating names. but i want to use my user's names.
can you help me?

Parse server payments not working

I have an app that used to be on Parse.com and now is migrated to the open source parse server running on elastic beanstalk. The app uses Stripe for payments and everything worked fine before, but after migrating to parse server, the payments are now failing. Does anyone know of something they changed or anyone had a similar problem?
Thanks
I am pretty sure that the module delivered with Parse hosted no longer works on Parse-server. I am sure that Stripe has a node module which you could install and use instead.
Instead of using Cloud Code, create a route in your index.js file to take care of charges. Make a post route and you can call it via jquery post or from a form. I use body-parser in index.js to retreive the post data.

I need to scrape all the analytics from a Flurry account

Right now, the only project I can see that does this is
https://github.com/lucamartinetti/flurry-scraper
...but it currently is not logging in properly, I suspect that this is do to the fact that Flurry has made changes to their API which result in the login not working anymore...
I tried messing with it, but am unable to get it to work.
Can anyone help me, or point me in the direction of a project that will do this? I want to scrape all the data possible and download it.
Any help would be appreciated.
Thanks,
-Mark
You don't need to scrape the website if all you want is analytics metrics of your app and you have the API key.
You just need to access this data using Flurry's reporting APIs.
For instance, you can make a REST call to the AppMetrics API and it would give you data about about your apps' users, sessions, pageviews, etc in XML or JSON. A simple AppMetrics call would be of the form:
http://api.flurry.com/appMetrics/METRIC_NAME?apiAccessCode=APIACCESSCODE&apiKey=APIKEY&startDate=STARTDATE&endDate=ENDDATE&country=COUNTRY&versionName=VERSIONNAME&groupBy=GROUPBY

Resources