Google People API don't remove contact from "starred" contactGroup - google-apis-explorer

When try to remove contact from my "starred" contact group, I receive response 200 {} , but contact is still in the group Picture.
I'm using contactGroups.members.modify, who work for all other group(delete and add), also work for adding a contact to starred, but dont work for remove.
Is anyone have the same problem or it is a bug in People API?

Related

How to get HTML leaderboard into discord channel that auto updates

Is there anyway I can make this leaderboard show in a discord channel as as embedded or parae it to look directly like that, but show in a channel a dn auto update?
I’ve been trying all day and all I can do it get texts files to show on discord or a slipper sloppy website parse. Please Somone else , I just want to top 5-10 leaderboards user and for it to auto-update maybe every hour
enter image description here
Have you tried using Webhooks?
This Reddit post explains the process in detail
A Discord Bot might also be usable in this case

Getting the e-mail of someone who clicked on a button?

Not sure if this is even possible, but my (admittedly basic and tertiary) Googling has turned up a lack of results.
Is it possible to fetch the e-mail address of someone who clicks a button?
I'm trying to make a check-out spreadsheet that has a few functionalities Google Forms does not offer: specifically, graying out options in a list while those options are unavailable. I don't want people ignoring an e-mail box that they're meant to type in, or using another person's email, but I can't figure out if there is or is not a way to get the e-mail of someone who clicks a button.
Thanks in advance.
Shabnam got it.
[currentUser=Session.getActiveUser().getEmail()]
if you missed his comment.

Link to show Google reviews

Currently working with a website and Google MyBusiness. Rather than duplicate content, we want to include a URL to the reviews from customers on Google MyBusiness (Google Maps) -does anyone have any ideas on the format of the URL?
There's lots of information available on how to make links to encourage customers to write reviews
https://search.google.com/local/writereview?placeid=<place_id>
but I've found nothing about a link to display reviews.
https://search.google.com/local/reviews?placeid= is accurate; you can also search for your business on Google; hit the read reviews link and when the javascript modal pops up with the reviews copy the URL; for example:
I googled 'Sushi Mikasa' a local Sushi restaurant; they have 40 reviews, I click on the 40 Reviews link to read them and the reviews modal list pops up; the URL on my browser is: https://www.google.com/search?ei=O5wPXcbfPIbH_QbZ2azYDA&q=sushi+mikasa&oq=sushi+mikasa&gs_l=psy-ab.3..0l2j0i20i263j0l4j0i22i30l3.7626.12192..12313...0.0..0.89.1197.16......0....1..gws-wiz.......0i71j35i39j0i67j0i131j0i131i67j0i131i10j0i131i20i263.rbNKWeU3HEo#lrd=0x89c2448abab82c39:0x7eae8848db443229,1,,,
This URL will take a user straight to the review box; similar to how the local/reviews/placeid= does; except this uses a search string instead of a Place ID. Regardless, you've found two great solutions :)
Think I've now cracked it with a bit of trial and error:
https://search.google.com/local/reviews?placeid=<place_id> seems to work.
One additional trick (without finding the placeid) is to click Share then select Embed a map tab. It should display the place details in a small white box in top left corner with a X Reviews hyperlink, just copy that. Example for a place aesthetic dental centre:
The link is https://search.google.com/local/reviews?placeid=ChIJlxoV2VxmXj4RSaoikrizWGg&q=Aesthetic+Dental+Center&hl=en&gl=IN
which directly opens the place reviews. Quick and simple :)

my adsense ads not displaying for my active adsense account but previously it got cancelled

( http://bloggerbandwidth.blogspot.com ) On my blog I had previously it associated with some other adsesne account but that adsense account got disapproved
so my adsesne ads are not showing but one month before I got approved on other adsense account and move my side to adsense associated account and i paste my code on my side but blank space is came but ads are not come so what to do any one knows about this?
simply you change your blogspot name than adsense ads are showing automatically . But another important thing is. If you rename the blog that is affect your page traffic.you definitely lose your page visitors.

Forcing popup when coming from external websites (e.g google)

I work for a restaurant guide in the NW of the UK and we basically have featured restaurants (the ones who pay a monthly sub) and non-featured restaurants (the ones who get a basic free listing).
We were looking to get some kind of popup appearing on the non-featured restaurants, but only if they came from an external site, e.g Google.
So the steps would be:
1) User goes to google and puts in "name of unfeatured restaurant"
2) Our company comes up with the basic listing of that restaurant
3) User clicks the link but is then presented with a popup of featured restaurants
But, we would only need the popup to appear if the user has come from an external site. So if they were they came internally from our website the popup wouldn't show.
We use ASP at work and I was thinking it may possibly need some kind of a variable being passed through, or maybe something to do with cookies but I'm not an expert on the ASP side.
Hope someone can help on this :)
To see where a user came from you can try:
<%=Request.ServerVariables("HTTP_Referer")%>
This would contain the referring URL. if you want to use it on subsequent pages, you'll have to store it ofcourse in a cookie or session variable.