Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*[“‘][a-z0-9\-_\!\$]+[“‘]': ing ClientId = "client id"; private const string ClientSecret = "client secret"; //enter username and password a soundcloud user, e.g. your own credentials private const string Username = "username"; private const string Password = "password"; static void Main(string[] args) { //fill credentials SoundCloudCredentials credentials = new SoundCloudCredentials(ClientId, ClientSecret, Username, Password); […]
↧