OpenBulletAPI.dll on mac
-
Hello,
I'm trying to get OpenBullet on my mac.
First, is it possible ? Because I pulled the API repository but I don't find the OpenBulletAPI.dll file inside so I don't know where launch the command "dotnet ./OpenBulletAPI.dll".
However, I have installed .NET and dotnet command sucessfully works.
Thanks in advance,
CH
-
Yes it's possible. You have to download the precompiled file https://github.com/openbullet/openbullet-api/releases/latest
If you just clone the repository you have to compile it yourself with visual studio for mac or equivalent, but I suggest you to spare yourself the work and download the one that I already compiled.
-
Ok thanks @Ruri, I tried :
dotnet ./OpenBulletAPI.dll --urls "http://*:5000"And the result is :
Hosting environment: Production
Content root path: /Users/me/Downloads/OpenBulletAPI-0.0.2
Now listening on: http://0.0.0.0:5000
Application started. Press Ctrl+C to shut down.
warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3]
Failed to determine the https port for redirect.But I have nothing when I try to access to http://localhost:5000/ or http://0.0.0.0:5000.
Thanks
-
Maybe it doesn't work if you access from localhost, try to access from another machine using
http://your_public_ip:5000
-
It doesn't work. I don't understand why it saying : "listening on 0.0.0.0"...
-
In your routing table
0.0.0.0
should catch all IPs that didn't match with other rules
-
ok so it doesnt work on my mac