=== modified file 'oauth_common.authorizations.inc'
--- oauth_common.authorizations.inc	2011-05-27 12:44:36 +0000
+++ oauth_common.authorizations.inc	2011-11-10 21:03:08 +0000
@@ -38,13 +38,13 @@
 
     $operations[] = array(
       'title' => t('Edit'),
-      'href'  => sprintf('user/%d/oauth/authorizations/%s', $account->uid, $token->key),
+      'href'  => sprintf('user/%d/oauth/authorizations/%s', $account->uid, $token->tid),
       'query' => array('destination' => $_GET['q']),
     );
 
     $operations[] = array(
       'title' => t('Delete'),
-      'href'  => sprintf('user/%d/oauth/authorizations/%s', $account->uid, $token->key) . '/delete',
+      'href'  => sprintf('user/%d/oauth/authorizations/%s', $account->uid, $token->tid) . '/delete',
       'query' => array('destination' => $_GET['q']),
     );
 
@@ -120,7 +120,7 @@
       '#value' => substr($token->secret, 0, 6) . '...',
     );
 
-    $ahah_path = "user/{$token->uid}/oauth/authorizations/{$token->key}/ahah/secret";
+    $ahah_path = "user/{$token->uid}/oauth/authorizations/{$token->tid}/ahah/secret";
     $form['show_secret'] = array(
       '#type' => 'button',
       '#value' => t('Show secret'),

=== modified file 'oauth_common_providerui.module'
--- oauth_common_providerui.module	2011-05-27 12:44:36 +0000
+++ oauth_common_providerui.module	2011-11-10 21:01:55 +0000
@@ -98,7 +98,7 @@
     'page callback' => 'drupal_get_form',
     'page arguments' => array('oauth_common_form_authorization', 4),
     'access callback' => '_oauth_common_user_access',
-    'access arguments' => array(1, 'oauth authorize consumers'),
+    'access arguments' => array(1, 'oauth authorize any consumers'),
     'file' => 'oauth_common.authorizations.inc',
     'type' => MENU_LOCAL_TASK,
   );
@@ -107,7 +107,7 @@
     'page callback' => 'oauth_common_ahah_secret',
     'page arguments' => array(4),
     'access callback' => '_oauth_common_user_access',
-    'access arguments' => array(1, 'oauth authorize consumers'),
+    'access arguments' => array(1, 'oauth authorize any consumers'),
     'file' => 'oauth_common.inc',
     'type' => MENU_CALLBACK,
   );

