-
-
Notifications
You must be signed in to change notification settings - Fork 9
Description
Hello,
I'm pleased to hear that this still works. I'm just wondering, do you have any basic setup instructions (OS already installed) for setting up a standalone server and what the requirements are? I see you have details for Heroku, however they stopped their free plan and at this point I thought that I may as well put this in a VM on a internal company server.
At one point I figured that I would do a little php script (see below) that would handle another issue that we have (we can't view links in outlook that starts with ms-mobile-apps:///
for some stupid reason) but thought that there may be a better way and want to try this out.
<?php function Redirect($url, $permanent = false) { header('Location: ' . $url, true, $permanent ? 301 : 302); exit(); } Redirect("ms-mobile-apps:///providers/Microsoft.PowerApps/apps/".trim($_SERVER['QUERY_STRING']), false); ?>
I guess the other thing I should ask, I guess it would be easy for me to edit the source code so that I can use the ms-mobile-apps:///
protocol instead of https
?
Looking forward to having some fun with this :)