无法将 Ola API 集成到 Android

Failed to integrate Ola API in Android

我正在使用 Ola API 构建应用程序。我已经实现了一些不需要任何类型授权的 API(例如,简单地发出 HTTP 请求并处理 JSON 响应并提取重要信息并向用户显示)。

现在,当我尝试实施 Ola API 时,我发出 HTTP 请求的那一刻显示

{"code":"invalid_partner_key","message":"Partner key is not authorized"}

我只是在发出 HTTP 请求 - https://devapi.olacabs.com/v1/products?pickup_lat=12.9491416&pickup_lng=77.64298

没有任何东西来验证。

如何在 Android HTTP 请求中执行此操作?

当我需要在 Android 中传递 HTTP 凭据时,我使用 setRequestProperty()

HttpURLConnection conn = (HttpURLConnection) URL.OpenConnection();

Conn.setRequestMethod("GET");
conn.setRequestProperty("Authorization:", Token $SERVER_TOKEN);