Authentication

Secure your Gconv Prune application with robust authentication

Overview

Learn how to implement secure authentication in your Gconv Prune application. We support multiple authentication methods to suit your needs.

Authentication Methods

API Key Authentication

Use API keys for server-to-server communication:

curl -X POST https://api.gconvPrune.fun/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

OAuth 2.0

Secure user authentication flow:

// Redirect to OAuth provider
window.location.href = 'https://auth.gconvPrune.fun/oauth/authorize?
  client_id=YOUR_CLIENT_ID&
  redirect_uri=YOUR_REDIRECT_URI&
  response_type=code&
  scope=chat:write'

Security Best Practices

  • Never expose API keys in client-side code
  • Rotate API keys regularly
  • Use environment variables for sensitive data
  • Implement proper session management
  • Enable two-factor authentication when possible

Need Help?

For more information about authentication or security best practices, please contact our support team.