api-key

YouTube API Key Security - How worried should I be?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-10 11:47:37
问题 I'm getting ready to launch an Angular/Node web application which uses the YouTube V3 API. The app was released about 3 weeks ago as a "beta version" for market validation and was pretty successful in beta. It's not going to be a commercial success, just a fun app that makes peoples lives a little bit easier. I have one issue/concern, should I be hiding my YouTube V3 API key, client id, and scopes? Or can I assume that since only my domain name is whitelisted, that the potential hackers

Google Distance Matrix API Key Excel VBA

大憨熊 提交于 2019-12-10 11:37:50
问题 I can't get the VBA Code in my Excel Document to connect to my account, using the API Key. Not sure if I'm putting the key in the right place. I've even upgraded my account, and have billing Enabled. I'm trying to pay them, but it wont let me exceed 2,500 transactions. Thanks in advance for the help. Edit (7/20): So I updated my code to use ClientID instead of API key '&clientid=EntersIDHere' and it works, but still only does 2500 transactions. 'Calculate Google Maps distance between two

Google cloud storage API with Android API key not working (however browser API key works)

帅比萌擦擦* 提交于 2019-12-10 11:05:57
问题 I am trying to access a list of objects from google cloud storage from my android application. The call I am using to access google cloud storage is: GET https://www.googleapis.com/storage/v1/b/{BUCKET_NAME}/o?key={YOUR_API_KEY} When I set up a Browser API key with no referrers, I get the JSON results I expect. The files in the bucket are publicly accessible and I am simply trying to read them. However, I would like to use an Android API key so that not anyone can access the files. When I use

Stripe: Validating Publishable and Secret API Keys

北城以北 提交于 2019-12-10 01:54:53
问题 I'm builiding a web application that allows our users to sell tickets for music shows. In order to handle the payments between ticket buyers and show instigators, I use Stripe. Basically, the show instigator creates his show's page on my application, and the users can buy tickets for this show. In order to create a show, the instigator fills in a form (Show's name, show's date, where the show will take place, what bands will be playing, etc.) This form also requires the show instigator to

Managing Google Maps API keys

时光总嘲笑我的痴心妄想 提交于 2019-12-09 13:37:58
问题 My application uses a large number of MapView screens and I'm trying to figure out how to manage the API key between the debug environment and production. Apparently, there is no way to change the debug application key in Eclipse so I must use a debug map API key in that environment. Conversely, there is no way to export a package for beta testing without a production application key so I must change the map API key in every view in order to create a working package. My first idea was to do

Is there anyway to secure API keys in React JS, even though it's on the client side?

无人久伴 提交于 2019-12-09 03:54:28
问题 Is there anyway to secure an API key when using it on a React javascript file ? For example; emailjs.init("API_KEY"); 回答1: You may want to check how Google Firebase does pure client-side authentication: https://firebase.google.com/products/auth/ Edited: This general introduction to Authentication using API-keys, OAuth etc (source: codecademy course on bulding web-apps) may help understand what API keys are meant for and why it should't be necessary to secure them. The reason is that there are

Can I change/set the Google Maps API Key dynamically from JavaScript?

吃可爱长大的小学妹 提交于 2019-12-09 00:13:41
问题 I'm faced with a problem with a small web application I'm developping: My HTML-source will be integrated into the HTML source on another site. I'm using a Google Map in my code, so I have to pass a API-Key for loading the Google Maps-script on the current domain. The problem: My code will be integrated on two different domains, requiring two different API-Keys. I have those two keys and can identify the valid one by JavaScript (With the help of document.location.host), but how can I manage to

How To Get A Facebook API Key?

纵饮孤独 提交于 2019-12-08 16:14:50
问题 Okay, so I created a new account on Facebook but used the link that said 'Create a Page for a celebrity, band or business' I chose Brand or Product and signed up. Now it's absolutely impossible for me to get an API through my new Facebook account, there's no option to be seen to get the API key, in fact I spent half a day trying to figure out. I decided to log into my personal Facebook account and get an API key, managed to do it in 10 seconds flat, so why on earth is it so hard to get an API

How to protect an API key in a .NET application

吃可爱长大的小学妹 提交于 2019-12-08 16:03:39
问题 My application hits a number of web services, such as Twitter and Flickr. It uses API keys from those services, and I'd like to obfuscate them in my binaries. (I'm not really worried about piracy or anything, I just need to keep these keys secret.) What's the best way to go about it? If I store them as const SecureString, does that keep them out of memory? The MSDN description says the text is "deleted from computer memory when no longer needed", but isn't a const always in memory? Will

Using other account when uploading signed apk in google play store

僤鯓⒐⒋嵵緔 提交于 2019-12-08 15:20:54
Their is no bug with regard to the maps. I already signed the apk with release keystore , the API Keys are registered in my account It perfectly works in any devices. What's the problem is when it is uploaded with the client account in google play store and downloaded in their device, the map displays white. Question: 1.Does it affect the application if the API keys are registered to my account and the one who upload the app is not my account ? Answer: The API key is associated with the apk package and it's keystore and not a user account. First you need to create a keystore for you app. Refer