fix: Replace hardcoded API key with placeholder in TenorApi class

This commit is contained in:
Ariq Pradipa Santoso 2025-08-19 07:06:47 +07:00
parent 151dd309f2
commit ed0648d030

View file

@ -65,7 +65,7 @@ class TenorApiResponse {
class TenorApi {
static const String _baseUrl = 'https://tenor.googleapis.com/v2';
static const String _apiKey =
'AIzaSyC5xwpkbdAnIH4NSyjUwg_t9Huoy19YVH4'; // Test API key from documentation
'<tenor-api-key>'; // Test API key from documentation
static const String _clientKey =
'fluffychat_app'; // Client key for integration tracking
static const int _limit = 20;