/**
  * 定义函数
  * getQuestionRedirectUrl
  * 函数功能描述
  * 获取问题活动的链接
  * @access private
  * @param array $data
  * @auth 范小宝 <*****@*****.**>
  * 修改历史: 1、 范小宝 2014-08-11 创建函数
  */
 private function getQuestionRedirectUrl($data, $weixin_AppId)
 {
     $url = \Weixin\Response\WechatConst::REDIRECT_DOMAIN;
     $params = http_build_query($data);
     $url .= $params;
     $response = new \Weixin\Response\Response();
     return $response->getOauthRedirectUrl($url, $weixin_AppId);
 }