如何使用 getconnect 在 flutter 中使用密钥进行 API 调用?
我的应用程序需要使用REST API与服务器通信,我的API包含密钥和秘密。我需要与服务器建立连接,并在 GetConnect 的帮助下使用 GetX 库 从服务器获取数据。
这是我用来与服务器通信的代码段,用于根据用户 ID 从服务器获取数据,但我无法实现它。
import 'package:get/get.dart';
import 'package:get/get_connect.dart';
class ApiService extends GetConnect {
final _baseUrl = 'https://api.instagram.com/'; // Dummy End Point
final _headersMap = {'SANBOX-API': 'VN0VQ2DW651L91Y25TVO'}; // Dummy REST API key and secret
// Fetch User Friends
Future<UserFriends?> fetchUserFriends({required String userId}) async {
String apiUrl = '${_baseUrl}user_firends?user_id=${userId}';
final response = await get(apiUrl, headers: _headersMap);
if (response.statusCode == HttpStatus.ok) {
return userFriendsFromJson(response.body);
} else {
return null;
}
}
}
当我执行这段代码时,我得到null
指导我在这里缺少什么。
提前致谢!!
My app need to communicate with the server using REST API, my API contains key and secret. I need to establish the connection with server and fetch the data from server using GetX library with the help of GetConnect.
Here is the piece of code I'm using to communicate with the server, to fetch the data from server based on user-id but I'm not able to achieve it.
import 'package:get/get.dart';
import 'package:get/get_connect.dart';
class ApiService extends GetConnect {
final _baseUrl = 'https://api.instagram.com/'; // Dummy End Point
final _headersMap = {'SANBOX-API': 'VN0VQ2DW651L91Y25TVO'}; // Dummy REST API key and secret
// Fetch User Friends
Future<UserFriends?> fetchUserFriends({required String userId}) async {
String apiUrl = '${_baseUrl}user_firends?user_id=${userId}';
final response = await get(apiUrl, headers: _headersMap);
if (response.statusCode == HttpStatus.ok) {
return userFriendsFromJson(response.body);
} else {
return null;
}
}
}
When ever I execute this snippet code, I'm getting null
Guide me what I'm missing here.
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论