mirror of
https://github.com/friendica/friendica
synced 2025-04-22 07:50:11 +00:00
pass params as string rather than array so it doesn't
get changed to multipart/forma-data
This commit is contained in:
parent
0d2650b29b
commit
2ae38e3fbf
2 changed files with 2 additions and 8 deletions
|
@ -827,17 +827,11 @@ function subscribe_to_hub($url,$importer,$contact) {
|
|||
if(! count($r))
|
||||
return;
|
||||
|
||||
$params = array();
|
||||
|
||||
$push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
|
||||
|
||||
$verify_token = random_string();
|
||||
|
||||
$params['hub.mode'] = 'subscribe';
|
||||
$params['hub.callback'] = urlencode($push_url);
|
||||
$params['hub.topic'] = urlencode($contact['poll']);
|
||||
$params['hub.verify'] = 'async';
|
||||
$params['hub.verify_token'] = $verify_token;
|
||||
$params= 'hub.mode=subscribe&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
|
||||
|
||||
$r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
|
||||
dbesc($verify_token),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue