Reputation: 1457
I'm using Google Places Autocomplete API, and I need to add a session token so I won't get charged per letter. the documentation doesn't say much. Can I just use a random unique string as a session token?
Upvotes: 2
Views: 1894
Reputation: 36
Yes, you can use anything as a session token. It could be "dog", "01234" etc. Google recommends red frame to use UUID v4 to generate this random strings.
Upvotes: 2