I have implemented a GA experiment with no redirect
Change the ga.src to ga.js experiments don't seem to work with stats.g.doubleclick.net/dc.js
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
was changed to
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
This solution is not optimal since it stops me from getting demographic data but I am at least getting experiment data now.