我如何从linkedin中的访问令牌的API获取AccessToken

时间:2019-06-25 13:03:54

标签: angular linkedin linkedin-api spring-social-linkedin

我们正在集成LinkedIn登录API,我们能够生成授权代码,还能够从浏览器获取访问令牌

enter image description here

enter image description here 但是我们想要在ajax或HTTP调用中使用 它给了我们200 OK的响应,但没有返回尸体,但是它在Postman中起作用

2 个答案:

答案 0 :(得分:0)

将您的身体置于第二个参数中,而不是将身体置于您的网址中

n <-  1e3
t1 <- sample(time2, n, replace=TRUE)
t2 <- sample(time3, n, replace=TRUE)

library(lubridate)
library(anytime)
microbenchmark::microbenchmark(fixDateTime=fixDateTime(t2),
                               as.POSIXct=as.POSIXct(t1, format="%Y-%m-%dT%H:%M:%OSZ"),
                               lubridate=parse_date_time(t2, "ymd_HMS"),
                               anytime=anytime(t2),
                               times=10L)

如果不起作用,请尝试使用return this.httpClient.post<User>("yoururl", body); 来查看其工作原理

observe: 'response'

答案 1 :(得分:0)

1)您需要传递 body 而不是作为查询参数,而是作为body对象,这是邮寄签名:

return this.httpClient.post<User>("yoururl", body, {
      observe: 'response'
});

引用HttpClient