尝试从 OpenWeatherMap API 中提取数据时出现错误
I'm getting an error when trying to pull data from OpenWeatherMap API
我目前正在通过 Udemy course(第 146 课)学习 Flutter。
在本课中,我需要使用 http package 中的 get 方法。这是我正在使用的代码:
class Location {
String apiKey = 'e20c545d412bb5ecc1c27b9b6afd5d37';
Future<void> getCurrentLocation() async {
Position position = await Geolocator.getCurrentPosition(
desiredAccuracy: LocationAccuracy.low,
forceAndroidLocationManager: true,
);
var data = await get(Uri.https('api.openweathermap.org',
'/data/2.5/weather?lat=${position.latitude}}&lon=${position.longitude}&appid=$apiKey'));
print(data.body);
}
}
这是我得到的错误:
I/flutter ( 9366): {"cod":401, "message": "Invalid API key. Please
see http://openweathermap.org/faq#error401 for more info."}
到目前为止我尝试过的事情:
- 我尝试在网络浏览器上使用密钥。它在那里工作。我可以毫无问题地获取 JSON 数据。所以钥匙是激活的。
- 我尝试更改代码,将其放入单独的 dart 文件中。没有变化。
我认为问题是,我无法将密钥发送到 API。或者有某种我看不到的语法或逻辑错误。所以 API 给我一个关于密钥的错误。由于我的代码没有发送适当的信息。
我无法解决这个问题,因此课程无法取得任何进展。这是我尝试解决此问题的第 3 天。我真的很沮丧。我希望有人能在这里帮助我。
试试这个
var data = await get(Uri.parse('https://api.openweathermap.org'+
'/data/2.5/weather?lat=${position.latitude}&lon=${position.longitude}&appid=$apiKey'));
我刚刚在我的机器上测试了它,它工作正常
现在应该可以了。
我目前正在通过 Udemy course(第 146 课)学习 Flutter。 在本课中,我需要使用 http package 中的 get 方法。这是我正在使用的代码:
class Location {
String apiKey = 'e20c545d412bb5ecc1c27b9b6afd5d37';
Future<void> getCurrentLocation() async {
Position position = await Geolocator.getCurrentPosition(
desiredAccuracy: LocationAccuracy.low,
forceAndroidLocationManager: true,
);
var data = await get(Uri.https('api.openweathermap.org',
'/data/2.5/weather?lat=${position.latitude}}&lon=${position.longitude}&appid=$apiKey'));
print(data.body);
}
}
这是我得到的错误:
I/flutter ( 9366): {"cod":401, "message": "Invalid API key. Please see http://openweathermap.org/faq#error401 for more info."}
到目前为止我尝试过的事情:
- 我尝试在网络浏览器上使用密钥。它在那里工作。我可以毫无问题地获取 JSON 数据。所以钥匙是激活的。
- 我尝试更改代码,将其放入单独的 dart 文件中。没有变化。
我认为问题是,我无法将密钥发送到 API。或者有某种我看不到的语法或逻辑错误。所以 API 给我一个关于密钥的错误。由于我的代码没有发送适当的信息。
我无法解决这个问题,因此课程无法取得任何进展。这是我尝试解决此问题的第 3 天。我真的很沮丧。我希望有人能在这里帮助我。
试试这个
var data = await get(Uri.parse('https://api.openweathermap.org'+
'/data/2.5/weather?lat=${position.latitude}&lon=${position.longitude}&appid=$apiKey'));
我刚刚在我的机器上测试了它,它工作正常
现在应该可以了。