When I create an api key, there is an option like this:
To make this key becomes private, I'd entered localhost:44397
.
But the problem is: the request which will use the key doesn't start with localhost:44397
.
It looks like:
https://www.googleapis.com/plus/v1/people/{userId}?fields=image&key={api_key}
So, I cannot use the key for this request.
Another option: if I select None
for Key restriction
, that means the key is public. That's not my goal.
My question: How can I use this key as a private key?
Thank you!