如何从本地主机上的另一个程序 运行 访问本地主机上的程序 运行

How to access a program running on localhost from another program running on localhost

我的本地机器上有两个程序 运行:一个 wordpress 和一个 spring 引导网络服务 我如何从 wordpress 访问网络服务?我已经尝试了以下代码(没有“http://”它也不起作用):

$response = wp_remote_get( 'http://localhost:8088/hello');

当然端口和路径是正确的,但是本地主机上的两个应用程序似乎无法一起通信对吗?

如果有人遇到类似问题,免费的解决方案是使用免费的argo隧道服务。我用的是 Cloudflare,效果很好,我想你也可以用 Ngrok。

有一个 link 可以帮助您:https://blog.cloudflare.com/a-free-argo-tunnel-for-your-next-project/