Issue summary:
Files and pages that are restricted to users based on permissions are not working as expected. Users are only able to access protected content if they are already logged in to the site.
Update 11/17
Test on http://sandbox.cda.org using Easy DNN News tokens to control the URL seems to work as expected
Files will need to be hidden until user is logged in
Update 11/9
The problem has to do with a lack of URL encoding on the DNN side. It's not a problem for Aptify.
...
...
LinkClick.aspx
That's what's making life a little harder, because that's an additional redirect being thrown in the mix. You pass that thing a query string, which gets rolled into the Aptify querystring too.
So you end up with a query string parameter that contains a query string... breaks all but the most clever URL parsing routines
https://www.cda.org/member-login?returnurl=/LinkClick.aspx?fileticket=Ont4-l_m5Bg%3d&portalid=0
...