gpt4 book ai didi

java - 使用 Eventful API[JSON] 未获得结果

转载 作者:行者123 更新时间:2023-12-01 08:54:43 30 4
gpt4 key购买 nike

我正在尝试使用 Eventful API 获取附近的事件列表,但无法通过请求获得任何结果。有谁知道这里有什么问题吗?

这是我的 JSON 请求:String url_request = "http://eventful.com/json/events?q=music&l=Singapore&api_key= "+ API_KEY;

这是我当前的输出:

{"spoken_search_data":null,"location":{"geo_ip_fail":"0","location_type":null,"location_id":null,"geo_ip_guess":null,"meta_name":"全局","Pretty_name":"全局"},"localized_base_url":"http://eventful.com ","is_default_eventful_site":"1","facebook_app_namespace":"eventful","home_url":"/"}

package EventTest.EventTest;

import java.io.IOException;
import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.Response;


public class App
{
private static final String API_KEY = "my_api_key";
OkHttpClient client = new OkHttpClient();

public static void main( String[] args ) throws IOException
{
App request = new App();

String url_request = "http://eventful.com/json/events?q=music&l=Singapore&api_key=" + API_KEY;
String response = request.run(url_request);

System.out.println(response);

}

public String run(String url) throws IOException {
Request request = new Request.Builder().url(url).build();

Response response = client.newCall(request).execute();
return response.body().string();
}
}

最佳答案

通过更改 JSON 请求来设法获得所需的结果:

字符串 url_request =

"http://api.eventful.com/json/events/search?keywords=music&location=Singapore&app_key=my_app_key ";

关于java - 使用 Eventful API[JSON] 未获得结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42115863/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com