我正在寫一個谷歌appengine應用程序,其中存儲數據和Web前端。我希望能夠在C#程序中下拉這些數據。這意味着我需要對網站進行身份驗證(用戶必須登錄才能查看數據)。我如何進行身份驗證?我嘗試在WebClient上設置憑據,但我一直在獲取Google登錄頁面。與來自C的谷歌appengine互動#
WebClient client = new WebClient();
client.Credentials = new NetworkCredential("username", "password");
//should it be [email protected] ??
client.BaseAddress = "http://nosoperor-internal.appspot.com";
String s = client.DownloadString("/bank");
//s now contains the google login page, unfortunately
什麼樣的登陸計劃的網站是否聘用? HTTP基本/摘要,表單+ cookie? – 2010-02-21 21:39:24
我不知道,無論默認爲appengine – Martin 2010-02-21 22:27:37