2

I'm using Google place API for autocomplete per session

I know session_token used to group together autocomplete.

But i don't can we reuse existing session_token when it will expire and do we need create new session_token when refresh that page ?

1 Answers1

2

Warning: Be sure to pass a unique session token for each new session. Using the same token for more than one session will result in each request being billed individually. Using a version 4 UUID is recommended.

Based on this page, reusing session token will cause independent billing, which means you'll pay more if you do that.

Thor-x86_128
  • 157
  • 18