我在 Django 中有一个后端应用程序,我们需要通过前端发送一些数据。将 cURL 与 php 一起使用,我们通过以下方式进行操作:
<!DOCTYPE html>
<html>
<body>
<?php
$ch = curl_init("http://localhost:8000/auth/convert-token");
$s = 'some string';
curl_setopt($ch,CURLOPT_HTTPHEADER,array('Authorization: Bearer facebook '."$s"));
curl_setopt($ch,CURL_RETURNTRANSFER, False);
curl_exec($ch);
curl_close($ch);
?>
</body>
</html>
其中 $s 是一个变量。我想知道在 android 中实现相同功能的等效代码是什么。