+4
index.php
+4
index.php
···
209
209
'headers' => [
210
210
'User-Agent' => USER_AGENT_STR,
211
211
'Authorization' => 'Bearer: '.$token->toString()
212
+
],
213
+
'query' => [
214
+
'client_assertion_type' => 'urn:ietf:params:oauth:client-assertion-type:jwt-bearer',
215
+
'client_assertion' => $token->toString()
212
216
]
213
217
]);
214
218
$provider = new BskyProvider($options, $client, $httpFactory, $httpFactory, $httpFactory);