在Dart中共享Plex库



嗨,我正在研究如何在dart中共享Plex库。我正在帮助自己在python中使用这个工作脚本(它有效(

https://gist.github.com/JonnyWong16/f8139216e2748cb367558070c1448636

不幸的是,我的代码返回了一个http错误400,错误的请求

注意:当我运行dart代码时,没有共享库。

可能有效载荷不正确:|感谢的帮助

import 'package:http/http.dart' as http;
class Server {
String token, ip, port;
Server(this.ip, this.port, this.token);
share() async {
var server_id = '00000000000000000000000000000000'; fake id 
var library_section_ids = '97430074'; // right id , it works in python
var invited_id = '50819899'; // right id , it works in python
var headers = {
'Accept': 'application/json',
'X-Plex-Token': token,
};
var data =
'["server_id": $server_id,'
' "shared_server":["library_section_ids":[$library_section_ids],'
' "invited_id":$invited_id]';
var res = await http.post(
Uri.parse(
'https://plex.tv/api/servers/$server_id/shared_servers/'),
headers: headers,
body: data);
if (res.statusCode != 200) {
throw Exception('http.post error: statusCode= ${res.statusCode}');
}
print(res.body);
}

}

void main(List<String> arguments) async {
var srv = Server('xxx.yyy.xxx.yyy', '32400', '000000000-1111');
await srv.share();

}

旧代码有一些错误,不能完美地编码数据我用"dio"包解决了问题,这个链接对我帮助很大https://reqbin.com/

如果用户没有共享库,则此代码添加一个新的

import 'package:dio/dio.dart';
class Server {
String token;
Server(this.token);
test() async {
var serverId = '';
var librarySectionIds = ;
var invitedId = ;
var dio = Dio();
var data = {
"server_id": serverId,
"shared_server": {
"library_section_ids": librarySectionIds,
"invited_id": invitedId
}
};
dio.options.headers['Accept'] = 'application/json';
dio.options.headers["authorization"] = "Bearer $token";
var response = await dio.post(
'https://plex.tv/api/servers/$serverId/shared_servers/',
data: data);
print(response);

}

相关内容

  • 没有找到相关文章

最新更新