Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
117 views

I'm building a web based VoIP dialing software using Twilio. However, Twilio just keeps raising an error of having invalid API key-secret pair. I've tried the following fixes: Different regions (us1, ...
Petr's user avatar
  • 21
0 votes
0 answers
58 views

I'm new to AWS and Python. I was able to create a Lambda Function trigger for an S3 Bucket to detect when a .csv file is created, then process the rows, format the data, and do an upsert to Sendgrid. ...
Esteban Lezama's user avatar
1 vote
1 answer
627 views

I had codex originally authenticate via openAI web. Since i hit my limit i would now want to upgrade to the "pay per use" via api key. After following all the steps on https://github.com/...
Marlon Berdefy's user avatar
0 votes
3 answers
131 views

I'm developing an application in Flutter and I'm facing a problem. I would like to use Google Maps in my application and for that I need an API key. For security reasons, I chose to use dot env to &...
André Felipe's user avatar
0 votes
2 answers
93 views

I have a POST route /publish with a dependency get_current_user. get_current_user has as fastapi.security.APIKeyCookie as dependency. If authenticated correctly everything is fine but if I do a curl ...
Amit's user avatar
  • 128
2 votes
0 answers
64 views

I have been using the Blogger V3 api for many years. I use the official googleapis.com PHP library to retreive data and take care of the oAUth2 flow. Since a couple of days I cannot let users ...
mikementzer's user avatar
-1 votes
2 answers
127 views

I've try to register/login into time doctor 2 using register/login api and it success, after login i successfully get the auth token. But futher when i try to access any GET route it with provided ...
Shahzaib Imran's user avatar
0 votes
0 answers
50 views

I am experiencing an issue with my Google Places API key, which is returning the following error: { "error_message" : "This API project is not authorized to use this API.", "...
Smile Smilecityclinicyerevan's user avatar
0 votes
1 answer
336 views

How to use google_vertexai or google_genai with LangChain in Python? I get the following error: USER_AGENT environment variable not set, consider setting it to identify your requests. Traceback (most ...
khteh's user avatar
  • 4,280
0 votes
1 answer
1k views

I have 2 sets of controllers: internal and external I have JWT auth on internals and API Key auth on externals. How do I setup my API to enable Scalar to ask for API key but only for the external ...
NotLostRider's user avatar
0 votes
1 answer
128 views

I try to solve a captcher from the following standard homepage: https://google.com/recaptcha/api2/demo For that I am using the following code: String apiKey = "CAP-XXX"; ...
Jocken's user avatar
  • 25
1 vote
0 answers
32 views

We are currently expanding our functionality beyond the internal services. We want to make a chat widget that our subscribers can embed on their website and let any visitor start a quick Q&A ...
Vault Boy's user avatar
1 vote
0 answers
56 views

I'm developing a NextJS application with typescript, trying to set up mailgun. I have this mailgun.ts setup file: import config from "@/config"; import Mailgun, { MessagesSendResult } from &...
Elena's user avatar
  • 11
0 votes
0 answers
30 views

I have to implement multiple type of authentication in my backend application. JWT authentication API key authentication In case of JWT authentication:- After successfull authentication of user, ...
Gourav Saini's user avatar
0 votes
0 answers
59 views

I'm encountering an issue with Stripe integration in my Expo app when running it on a real iOS device. Everything works fine on Android builds, iOS simulators, and Android simulators, but when I try ...
Miko's user avatar
  • 1
1 vote
0 answers
81 views

I'm trying to restrict my API_KEY to only my app. In the Edit API key page I set to 'Android apps' and set the package name and Fingerprint. The package name is the same as in my AndroidManifest.xml: &...
Fabio R Lopes's user avatar
0 votes
1 answer
68 views

I am trying to install drf-api-key in django. I am using Linux Mint 21.3. But I am getting below error. python3 -m pip install drf-api-key Defaulting to user installation because normal site-packages ...
abu abu's user avatar
  • 7,102
0 votes
1 answer
193 views

I want to upload my flutter projects to GitHub, without publicizing my API keys, I have already secured my firebase_options.dart file by removing it entirely and creating a ". env" file ...
Gaurav Paul's user avatar
0 votes
1 answer
628 views

What is the best practice for accessing a private apiKey in a nextjs component? I have a component that needs to take an apiKey as a prop: <Component apiKey={apiKey} /> Currently I am ...
Melv1nS's user avatar
0 votes
1 answer
42 views

So I want to query the current price of a Stocks with alphvantage. But Alphavantage gets me this back: { "Global Quote": { "01. symbol": "IBM", "...
tala hon's user avatar
0 votes
1 answer
302 views

I am trying to use Coinbase in Sandbox mode to try out a strategy. I created an Sandbox API using the instructions here https://docs.cdp.coinbase.com/exchange/docs/sandbox/ However, when I use them in ...
Tendekai Muchenje's user avatar
0 votes
1 answer
412 views

I'm trying to set up a custom question-answering resource in Azure, but I'm having trouble locating the following details in the new Azure Portal interface: AZURE_ENDPOINT: The endpoint URL for the ...
Abbas Jafari's user avatar
  • 1,659
1 vote
0 answers
114 views

I just want to use HERE maps with the simplest of all calls to retrieve the long/lat from a given location just like https://geocode.search.hereapi.com/v1/geocode?q=Berlin&apiKey=mykey The ...
Oliver Busse's user avatar
  • 3,395
1 vote
1 answer
785 views

import dotenv from "dotenv"; dotenv.config(); console.log("OPENAI_API_KEY:", process.env.OPENAI_API_KEY); // this line to debug import openaiPkg from "openai"; const ...
user26669785's user avatar
1 vote
1 answer
242 views

I need to add google maps api key into my .env file. I configured my webpack according to this config and use it in my map component. When I console log this key I can see it in console, But while ...
rufat29's user avatar
  • 11
0 votes
1 answer
111 views

I made a basic Node.js/React project, and my .env file doesn't work. My project is at https://github.com/TheGElCOgecko/weather-predictor/tree/main. The main details is that I am using dotenv-webpack, ...
TheGEICOgecko's user avatar
0 votes
1 answer
523 views

We have an issue where we get the error "This page can't load Google Maps correctly". Steps are as follows: The instance was created on Google Cloud (without billing in test phase) and API ...
Stoan's user avatar
  • 1
0 votes
0 answers
91 views

I would like to add API Keys to my current REST API using Spring Boot V3 (and kotlin). Right now I'm using either Basic Auth (for development and testing) or Oauth2 (for prod). I want to add access ...
Dieter's user avatar
  • 11
0 votes
1 answer
105 views

I am working on a flutter chat app on android and ios. Unfortunately, I pushed my full working folder to my GitHub repository and later on received an email from GitHub that my API keys are ...
Yazzine's user avatar
  • 47
0 votes
1 answer
749 views

I want to add API key authentication to my API using an authorization policy but I get the error No authenticationScheme was specified, and there was no DefaultChallengeScheme found. The default ...
iKingNinja's user avatar
0 votes
0 answers
117 views

I wrote this piece of code on my pycharm which works and still works anytime I run it on pycharm. But I needed to put the code on replit and it keeps giving me 401 client error on replit On replit I ...
David Oladeji's user avatar
1 vote
0 answers
585 views

I was struggling to find a way to pass an apikey to ElasticSearch APM (Elastic.Serilog.Sinks) in order to authenticate and sink logs to my Elasticsearch stack. The Elasticsearch Docs do not provide ...
Ivan Maia's user avatar
  • 271
2 votes
1 answer
4k views

I'm building a REST API that uses API keys for authentication. I want to ensure that these API keys are stored securely in my database. If I were storing user passwords, I would use Argon2id for ...
lmmendes's user avatar
  • 1,522
-1 votes
1 answer
2k views

I'm getting an authentication error when using my API key that I created at OpenAI.com to make a request. This is the code that I used: from openai import OpenAI client = OpenAI(api_key = "Lkey&...
lynaIFR's user avatar
0 votes
0 answers
99 views

Currently running Compreface Javascript SDK webcam using IDE Visual Studio Code and running into an issue. Once I run the command npm start I get the Chrome page to pop-up and start video. Once I ...
Leslie's user avatar
  • 1
4 votes
0 answers
478 views

How can I use supabase as a database for a REST API, with some "api key" (something like what Stripe or Twilio does) solution? I am trying to use supabase as the database backend for a ...
Angelica's user avatar
0 votes
1 answer
776 views

When I follow this tuition try to acess gemini, I got a error: Your default credentials were not found. To set up Application Default Credentials for your environment, see https://cloud.google.com/...
east cukt's user avatar
0 votes
0 answers
226 views

Here is my problem, the thing I'm trying to do is to capture the market activity from a game (I need the api key), but mitmproxy only captures player settings and a config, is there a way to get more ...
Xinon's user avatar
  • 17
0 votes
1 answer
778 views

I am trying to make a small webpage where a button click would allow me to fetch the latest news in German from the OpenAI API. Unfortunately, there's something wrong with my API calls which I want ...
sid's user avatar
  • 1
0 votes
2 answers
27 views

When I run this code to upload file to Audino on Python VSC, it occurs error: "'API_KEY' is not recognized as an internal or external command, operable program or batch file." Code: import ...
Khổ Khắc's user avatar
0 votes
2 answers
8k views

I'm new to using APIs in python and trying to access an API at the moment but keep getting an error code that based on the API documentation means I do not have access. I do have an account with an ...
user avatar
-3 votes
1 answer
211 views

I m using Youtube Api key in my project and 1000 api requests ha ve been made. Does anyone know that once we reach quota limit of 10000api request with google api the quota is over forever or it will ...
rahul agarwal's user avatar
0 votes
1 answer
818 views

I am completely new, so apologies in advance. I have Python 3.11.4 installed on my Mac. According to the OpenAI Quickstart guide, I must install the OpenAI Python library by running 'pip install --...
Mas's user avatar
  • 3
0 votes
1 answer
498 views

I am generating API key similarly to Stripe where my key is {prefix}_{guid}_{suffix}. Prefix is a constant Guid is the "password" portion of the key Suffix is a random 4 character string ...
Jordan's user avatar
  • 1
0 votes
0 answers
377 views

I created a Petfinder account and tried getting an API key through https://www.petfinder.com/developers/signup/ but when I fill out my information, I get a 403 Forbidden error. Has anyone encountered ...
bowen's user avatar
  • 1
1 vote
1 answer
41 views

i just try to find out how to build an oracle on chainlink to the POAP-API. I get the impression there is something wrong in my approach. My Goal is to find out if an adress had mint the token of our ...
krungle mataman's user avatar
0 votes
1 answer
426 views

I am trying to run a locust test but I am not able to use the .env file values .env file contains "Value": diuqriqjqj In the locust.py I have added apiKey = os.environ.get("VALUE", ...
Tanu's user avatar
  • 1,712
0 votes
1 answer
103 views

Based on https://pypi.org/project/flask-api-key/ I am trying to implement: from flask import Flask from flask_api_key import APIKeyManager, api_key_required app = Flask(__name__) my_key_manager = ...
Miguel Gonzalez's user avatar
1 vote
1 answer
265 views

I am developing an open source Google Maps project by Flutter and I do not want the GMS API to appear in my repo when I integrate with Google Maps. I don't know how I can use the variable in the .env ...
senabdulgani's user avatar
0 votes
1 answer
442 views

I'm using the google drive api to load on my websites multiple images from a folder, It works fine one month ago, now is not working anymore, I didn't change the API key and even the folder id is ...
GGKMNTN's user avatar
  • 141

1
2 3 4 5
27