1

我正在编写一些代码来与 API 交互,为了使用 API,您需要获取用于其余请求的会话密钥,会话密钥将在一段时间后变为无效,因此代码还需要准备重新认证。

代码本身与 API 无关,因为它是关于如何设计代码流的问题,我正在寻找最好的方法。

我这里没有代码(javascript/node.js),但这里基本上是它在伪代码中的样子:

function getResult {
  data = foobar
  return getData(data, callback)
}

function getData(data, callback) {
  *building query (including the session-key) and getting data via http*
  if error == noauth
    auth()
    // What should happen here, I need to rerun the query
  else
   callback(result)
}

function auth {
  data = foobar
  getData(data, callback(?))
  // it returns a session-key to use 
  //What should happen here?
}
4

1 回答 1

0

我会做类似的事情:

function GetAuth(auth_params)
{
    // get session key
    return session key;
}

function MyAPIWorker(auth_params)
{
    this._auth_params = auth_params;
    this._current_auth = null;
}

MyAPIWorker.prototype.do(action)
{
    if (this._current_auth == null)
    {
    this._current_auth = GetAuth();
    }
    var result = action(this._current_auth);
    if (result == no_auth_error)
    {
    this._current_auth = GetAuth();
    result = action(this._current_auth);
    }
    return result;
}

然后使用它:

worker = new MyAPIWorker(/* auth params here */);
worker.do(function (sessionKey) { /* do something with session key */});
/** blah blah **/
worker.do(function (sessionKey) { /* do other something with session key */});

工人将为您处理所有繁重的工作......

于 2012-07-21T02:07:18.993 回答