Given a list of activity re-sharers how can I get the links to those individual shares:
Reshare API call
There only seems to be a link to the users profile, not the actual re-share.
You can use plus.activities.list, search the post provider field for reshare, then determine from content whether it was your original post.
Related
We have a platform in which we are integrating Google Business API and before that we were just using Google Places API.
We kinda have similar scenario like the one below
https://www.en.advertisercommunity.com/t5/Google-My-Business-API/Google-Places-API-and-My-Business-API/td-p/575081
I have followed the instruction of first answer by "Terry".
I have done following steps
Used OAuth 2.0 for authentication and authorization
Created a new, unverified location
Found all of the possible locations that are a match to the unverified location
Upon the user’s selection and approval, associated the unverified location to a specified place ID
I am getting the reviews of approved/published business locations.
Here's the issue:
I want to get the reviews of that newly associated business location.
How can i achieve that?
Second question is, is it possible to associate a place Id with businesses location which is not returned by Google Business API Find Matches endpoint?
So finally this is what i get from GMB team.
"In the Google My Business API, the review operation is only valid if the specified location is verified, the only boolean field of the "LocationState object" in a location you should check for is "isVerified".
Ref: https://www.en.advertisercommunity.com/t5/Google-My-Business-API/Google-Places-API-and-My-Business-API/m-p/1605702#M7933
Is it possible to get a view of a user's activity (opens, clicks etc) via the Mailchimp API?
Looking through the docs, it seems possible at the campaign level, but I would like to see this information across all campaigns for a given user.
I think that Member-activity could be closed to what you want, I am not aware of any other direct method how to get this.
check API MailChimp API - Lists section
Google plus allows for the sharing of a url; and this gets added an activity as an attachment in the activity data. Is there a way when using Activities.Seach() to target the search to the attachment url? I can share a url on g+ and if the url is part of the comment of my post then I can then pull that post when using the activities.search; however if the url is only contained in the attachment, I can't pull any activities with that url. Is there something I'm missing? Any suggestions?
This is actually a known issue with google plus, one that has been requested quite a bit from the development community. https://code.google.com/p/google-plus-platform/issues/detail?id=57
The only real option at this time it to get an aggregate count of +1s and shares as shown here: http://www.helmutgranda.com/2011/11/01/get-a-url-google-count-via-php/
It seems the the google+ api is quite limited. I am simply trying to get the list of all the plusones of a user. does anyone know how to get that information?
Currently, there is no way to fetch a list of the URLs and posts that a user has +1ed. To see what information is returned by the Google+ API for a user, check the Person resource. Only some of these fields are guaranteed, but the rest may be returned if they are publicly visible on the user's profile.
You can see who +1ed a particular Google+ post through an Activity resource, specifically, the object.plusoners field. The activities.get API call can fetch the Activity resource for a specified public post.
Is there a way to get Email/Website of a particular place using Google Places API? If this is not possible is there a way other than using Google API?
To retrieve a places website address using Google Places API, you could perform a Places Autocomplete Request with the input parameter value set to the name of the place: e.g.input=Amoeba
https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Amoeba&sensor=false&key=your_api_key
Then using the reference from the response you could perform a Places Details Request: e.g.
reference=ClRMAAAAVzPUTLym999EXs4mKkpTqEmzX0a2kfXCUs4enTvWMHDd06VLvlzsGOdfrRd2QvkiRWs4sNkraAAJlMdytt4O4kYGoJZn4ENL5Ig5QYyeJmMSECDOGMO1MnDFtqzdqD8oDk0aFJr8_s-Y946QOz24YubPUsmoC2vl
https://maps.googleapis.com/maps/api/place/details/json?reference=ClRMAAAAVzPUTLym999EXs4mKkpTqEmzX0a2kfXCUs4enTvWMHDd06VLvlzsGOdfrRd2QvkiRWs4sNkraAAJlMdytt4O4kYGoJZn4ENL5Ig5QYyeJmMSECDOGMO1MnDFtqzdqD8oDk0aFJr8_s-Y946QOz24YubPUsmoC2vl&sensor=false&key=you_api_key
This would return the details for Amoeba including if available, the parameter website which would contain the places website address.
Google Places API provides Details requests and responses using your API key.
The tag allows for the google places url for that places
e.g.
http://maps.google.com/maps/place?cid=10704550479004381649
If you wish to harvest website, fax and opening hours information, it can only be done here.
There is no direct api in the Google Places API that will provide that info.
Just as addressComponents are part of the Details response, i assume tags will be added to the Place Details responses from the API to address this problem.
I have been trying to use Google Places API, and I have successful queries, fetching Places details, which has all the address information for the place I want to find, but ironically, there is NO WEBSITE attribute in the returned JSON!
The first version of Local search was MUCH better, and always accurate for searches when you know the business name.