🔑API Key

The app uses Open AI's API to generate images using Dall-E

Get api key from Open AI

After you create an account in open ai, go to https://platform.openai.com/overview and click on View API Keys. Now create a new secret key and copy it.

Secure your api key

to prevent your api key from getting leaked, we will paste it in firebase so that no one can get it.

firest step go to your firebase dashboard -> firestore

create new collection named api. inside that collection, create new document called key, then add new field in that document, call it key and give it a value like this:

Bearer (Your api key)

Last updated