I'm trying to build a small utility for OS X (a statusbar app) using swift that will list all our current clients and when a client is clicked - open up safari with a client url as well as sending a post request (such as login details for a clients WordPress, intranet or other webb application).
NSWorkspace.sharedWorkspace().openURL(NSURL(string: "url")!)
doesn't seem to have a way of incorporating POST data.
It's not for App Store submission, but only internal use within the team.
Any ideas or solutions?