Where do I see my google places checkins?

1.3k Views Asked by At

I am developing a mobile-web app and I am trying to checkin to a google place. So I followed the instructions from the [Google Places Api][1]. I got an access token, made a place search request and now I am trying to checkin to a google place. According to google documentation the only things I need to checkin to a google place are :

  • sensor (true or false)
  • key (my application's API key)
  • reference (got from Places Search request)

So I did the described request and the funny thing is that the response I got back was:

{
  "status": "OK"
}

But I never managed to see and verify that checkin.

I checked to my Google+ account, to my googlemaps, to places.google.com but I didnt have a luck.

1

There are 1 best solutions below

4
On BEST ANSWER

The Places API doesn't store your checkins, it only uses checkins to help with ranking. What you should do is have some logic on your server that stores checking locally so you can query that information later as needed.