after you send your GET command, send the authorization header like
client.println("Authorization: Basic dXNlcm5hbWU6cGFzc3dvsmQ=");
where the string after Basic is Base64 encoded username:password
You can get Base64 library for arduino by doing a google search.