I want to create an app that requires to fetch Gmail contact list for sending friends request so kindly give all link that are applicable to get it.
follow the steps given at link and like my answers
https://developers.google.com/google-apps/contacts/v3/?csw=1
Related
I'm just trying to check every second this website and retrieve the answer to my request. If this answer changes I want to be informed by email.
Thanks for your help!
I found the query I was looking for with google inspector but I don't know how to retrieve it or even how to request it again in a loop
I am using AppMaker I would like to get the Chat ID of a user so I can open a chat window in a new tab to that user. However, I don't see a way to get it.
To be clear, I want the part at the end of a URL like this:
https://chat.google.com/u/0/dm/pUR6NABBAAE
For some reason this ID is different from the old Hangouts chat ID (which I get from the Person datasource).
Is there a way to do this? I have looked at the docs and searched StackOverflow but do not see anybody trying to do this.
No, there is no way to do what you want as of now.
Google is always receiving Feature Requests for their APIs so you could try submitting it there.
However, since the Hangouts API is directed at Bots and Google has a compromise to not create avenues for spammers, I doubt that will be implemented.
I once asked this question.
Is it possible to use Instagram API in order to make a user list according to the number of followers?
And I am not a programmer, just a salesman.
And it seems like we cannot make this influencer finding tool by using "official" Instagram API. So I have looked for other solutions and found a way to get data from Instagram by using other API and JSON.
Please refer to these links.
https://github.com/whizzzkid/instagram-reverse-proxy
How can I get a user's media from Instagram without authenticating as a user?
Obtaining Instagram Access Token
My goal is creating an influencer finding tool, so I need to find photos with #tag and make user list accordingly to the number of followers of the user.
My question is;
1 Is it possible to get data such as user name, follower numbers, photos with certain #tag? by using non-official API and JSON?
2 And suppose we made it, then Instagram will find out our products and ban our accounts or service? It seems they do not allow us to use non-official API.
I would appreciate it if you could teach me whether we can make it or not, in a way that you talk to the person who does not know much about JSON or so.
Thank you!
Using unofficial API is always risky, its against their terms and policy.
You can use official APIs to make get this info.
You first have to make hashtag API , which gives you posts with username (no follower count), then for each user, you have make another API call to get user info, this will give you follower counts, bio and other details.
The 2 APIs needed are below, you need public_content scope permission and have to get your app approved by instagram and go to live mode.
https://api.instagram.com/v1/tags/{tag-name}/media/recent?access_token=ACCESS-TOKEN
https://api.instagram.com/v1/users/{user-id}/?access_token=ACCESS-TOKEN
I'm trying to verify the user's ownership of a Google place, restaurant and bars for now.
I checked this similar question, but it's unanswered.
Basically, the app I'm creating needs the place owners to post on behalf of the place. I want to verify the association of the person posting and the place so that regular users can't post junk. Is there a Google way of doing it ? If not, what other methods do you think is possible? Thanks in advance.
So you create a document in drive, then share it. You share it to someone inside google's network, the email address gets an icon of a single dude. But if you share it with someone outside of googles network, you get an icon of multiple dudes. At least you do when you share it with security set to anyone with the link can get in. Im not sure if this works in the other modes.
but anyways, you now write an app script that wants to send an email to everyone the file is shared with. so you use DocsList to get the file, then call the getEditors method to get the list of people that the file is shared with. The problem is it looks like that method only returns the email addresses with the icon of the single dude. How do I get the other email addresses?
If that can't happen, how do I tell Drive that the external email address I'm adding is in fact a person and not a group?
I think that happened because you shared to someone that do not have a google account.
In order to see the document with an identified ID they must have a google account (that do not mean a google email adress) You can create an account associated to your email adress here
for the second part of the question you can refer to that previous question here