Created
October 19, 2015 08:53
-
-
Save larsparendt/a67d25b1611db67ba67b to your computer and use it in GitHub Desktop.
Extract TestFlight user email addresses from iTunes Connect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var text = ''; $('.col-email').each(function(index,el) { text = text + ($.trim($(el).text())+'\n' )}); var a = document.createElement("a"); var file = new Blob([text], {type: 'text/csv'}); a.href = URL.createObjectURL(file); a.download = name; a.click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works with latest update (11/4/17) to iTunesConnect, where testers are in custom groups.
Also fetches all the testers for you, no need to paginate through them all.
https://gist.github.com/ddfreiling/a408904e6837387cd48c8a1c4d56e6fe