Search results

  1. xisonc

    Android Groundwire Push with TLS

    Not sure about SRTP, never used it, but setting the Groundwire to use TLS (sips) works for me. I believe it requires a valid SSL/TLS cert (not self signed) in Freeswitch.
  2. xisonc

    Can't get Inbound Fax Server to work

    In Advanced -> Modules, look for SpanDSP under Applications. It is Enabled and Running?
  3. xisonc

    Can't get Inbound Fax Server to work

    If you don't explicitly need fax detection, just set the inbound destination Action to point directly to the fax server. As an aside: the "Usage" options don't actually do anything from what I understand, it's mostly for your own knowledge of what the destination is for. I generally don't set...
  4. xisonc

    PHP Utility to make it easier to submit GET/POST requests to FusionPBX

    I built a very simple PHP class that handles cookies and CSRF tokens automatically to make it easier to create GET and POST requests for FusionPBX. This is NOT a REST API replacement, but it can be used to build your own tools to interact with FusionPBX in PHP. Check it out on Github...
  5. xisonc

    Post with API Key - Error Invalid Token

    I worked around it using CURL and having it save cookies and such, writing the code to look like a user is authenticating and POSTing the request. I'm only using it to pull logs for certain situations but it works no issue. I've written it in PHP and wrapped it in a function for easier use...