From 15989d6c35be91dd8f5e355170133b83020084c4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 6 Jun 2008 02:37:21 -0400 Subject: store URL rather than service in $omb for bounce back darcs-hash:20080606063721-84dde-a843ac9ef5b48aa25d15125d4f0be3f0c2e6bfb1.gz --- actions/finishremotesubscribe.php | 2 +- actions/remotesubscribe.php | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/actions/finishremotesubscribe.php b/actions/finishremotesubscribe.php index 208c2d9d5..1ec842f26 100644 --- a/actions/finishremotesubscribe.php +++ b/actions/finishremotesubscribe.php @@ -194,7 +194,7 @@ class FinishremotesubscribeAction extends Action { common_debug('using request token "'.$tok.'"', __FILE__); - $url = omb_service_uri($omb[OAUTH_ENDPOINT_ACCESS]); + $url = $omb['access_token_url']; common_debug('using access token url "'.$url.'"', __FILE__); diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 07f40ea2a..8baa3b7af 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -311,6 +311,8 @@ class RemotesubscribeAction extends Action { $omb['listenee'] = $user->nickname; $omb['token'] = $token; $omb['secret'] = $secret; + # call doesn't work after bounce back so we cache; maybe serialization issue...? + $omb['access_token_url'] = omb_service_uri($omb[OAUTH_ENDPOINT_ACCESS]); $_SESSION['oauth_authorization_request'] = $omb; -- cgit v1.2.3-54-g00ecf