Yue Gao

Results 8 comments of Yue Gao

@UnaPlugin I'm not so sure what had happened, maybe you could print out the `string` passed to `json.loads` and see why it's unexpected.

@CharlesLiu7 Sorry, but I couldn't reproduce the login issue as you described. As for #11, maybe the `Host` field in your header was occasionally verified due to unknown reasons, since...

My workaround is passing `y_pred` to `self.loss`, but this only handles the default loss function `self._get_logits_diff` https://github.com/Trusted-AI/adversarial-robustness-toolbox/blob/337a15f9db8e447426aa9cbe1f090d14e3f1d3a4/art/attacks/evasion/square_attack.py#L118-L126 The method would become something like ```python def _get_logits_diff(self, x: np.ndarray, y: np.ndarray,...

Hello, the docker-py PR has been merged. Is there any plan to update this dependency?

~没有使用 Cookie~,而是对每个 request 进行了签名,具体可见 `X-Signature`, `X-Request-Id`, `X-Timestamp` 这几个字段。

之前是有的,应该是后来换了认证方式。

经过测试,服务端没有对 `X-Signature` 等字段严格检查, 而是对 Cookie 中的 `zsxq_access_token` 进行认证。 ```python headers = { 'X-Request-Id': uuid, 'X-Timestamp': time_stamp, 'X-Signature': sha1(url + ' ' + time_stamp), 'Cookie': 'zsxq_access_token=%s' % token, } ```

不同版本QQ空间的API不同