成功时出错callbackId ... ReferenceError:无法找到变量:$ http

时间:2015-01-09 23:05:54

标签: angularjs http oauth inappbrowser ionic

我正在尝试使用离子(角度)构建混合移动应用程序。对于这个应用程序,我正在进行一个依赖于jQuery的oAuth调用,因此加载了两个库,以及oAuth和我和我的应用程序的脚本。

<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="cordova.js"></script>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/auth.js"></script>
<script src="js/app.js"></script>

启动身份验证的调用是在app.js中的离子就绪事件中完成的,如下所示:

$ionicPlatform.ready(function(){
  oAuthProcess.authorize({
    client_id: 'client',
    client_secret: 'secret',
    scope: 'scope',
    redirect_uri: 'fake url'
  }).done(function(data){
    localStorage.setItem('accessToken', data.access_token);
    localStorage.setItem('refreshToken', data.refresh_token);
    var accessToken = localStorage.getItem("accessToken");
    alert(accessToken);
  }).fail(function(data){alert(data.error);});
});

oAuthProcess函数位于auth.js文件中,如下所示。它打开inAppBrowser来执行身份验证,然后关闭它,将访问令牌返回给应用程序以允许调用API:

var oAuthProcess = {
  authorize: function(options) {
    var deferred = $.Deferred();
    var authUrl = 'some url' + $.param({
    client_id: options.client_id,
    redirect_uri: options.redirect_uri,
    response_type: 'code',
    scope: options.scope
  });
  //Open inAppBrowser with authUrl
  var authWindow = window.open(authUrl, '_blank', 'location=no,toolbar=no');
  authWindow.addEventListener('loadstart', function(e) {
    var url = '' + e.url + '';
    //Upon opening in                   
    var code = url.match(/\?code=(.+)$/);
    var error = url.match(/\?error=(.+)$/);
    if (code != null || error != null) {
      authWindow.close();
    }
    if (code) {
      $http({
        method: 'POST',
        url: 'some url',
        data: {code: code[1], client_id: options.client_id, client_secret: options.client_secret, redirect_uri: options.redirect_uri, grant_type: 'authorization_code'}
      }).success(function(data) {
        deferred.resolve(data);
      }).error(function(data){
        deferred.reject(response.responseJSON);
      });
    } else if (error) {
      deferred.reject({
        error: error[1]
      });
    }
  });
  return deferred.promise();
}

};

该应用程序可以加载inAppBrowser并创建一个令牌,但是会出现以下错误,该错误会在inAppBrowser关闭后停止令牌返回应用程序。

2015-01-09 16:48:04.299 myApp [2146:483400]成功时出错callbackId:InAppBrowser85303841:ReferenceError:找不到变量:$ http

任何帮助都可以解决这个问题,或者非常感谢另一种方法。

提前致谢。

1 个答案:

答案 0 :(得分:2)

我只是在这里输入,所以我可以向您展示代码示例,而不是评论......

假设您提供的示例是您的整个auth.js文件,请添加PSL为您提供的示例,因此该文件现在看起来像这样:

var $http = angular.injector(['ng']).get('$http');
var oAuthProcess = {
  authorize: function(options) {
    var deferred = $.Deferred();
    var authUrl = 'some url' + $.param({
    client_id: options.client_id,
    redirect_uri: options.redirect_uri,
    response_type: 'code',
    scope: options.scope
  });
  //Open inAppBrowser with authUrl
  var authWindow = window.open(authUrl, '_blank', 'location=no,toolbar=no');
  authWindow.addEventListener('loadstart', function(e) {
    var url = '' + e.url + '';
    //Upon opening in                   
    var code = url.match(/\?code=(.+)$/);
    var error = url.match(/\?error=(.+)$/);
    if (code != null || error != null) {
      authWindow.close();
    }
    if (code) {
      $http({
        method: 'POST',
        url: 'some url',
        data: {code: code[1], client_id: options.client_id, client_secret: options.client_secret, redirect_uri: options.redirect_uri, grant_type: 'authorization_code'}
      }).success(function(data) {
        deferred.resolve(data);
      }).error(function(data){
        deferred.reject(response.responseJSON);
      });
    } else if (error) {
      deferred.reject({
        error: error[1]
      });
    }
  });
  return deferred.promise();
}