Advertisement
Guest User

Untitled

a guest
Mar 4th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. string _userName = "", _password = "";
  2. string _developerKey = "mydevelopperkey";
  3. YouTubeRequestSettings _settings;
  4.  
  5.  
  6. void GetListOfSubs(string username, string password)
  7. {
  8. _settings = new YouTubeRequestSettings("My Subscribers", _developerKey, username, password);
  9. YouTubeRequest request = new YouTubeRequest(_settings);
  10. listBox1.Items = /*Subscribers from username*/
  11. //Here is my problem. How to get the subscribers?
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement