可以使用express从Wordpress API发出外部http get请求吗?
假设我想向http://demo.wp-api.org/wp-json/wp/v2/posts发出一个get请求--这是一个来自wordpress的帖子列表。
示例:
router.get('/posts', function(req, res){
I should make an external http get request here from wordpress api
("http://demo.wp-api.org/wp-json/wp/v2/posts")
Then I want to display the response as json
}
https://stackoverflow.com/questions/44511707
复制相似问题