2013-03-26 68 views

回答

0

確保你不要在你的範圍使用 「wl.signin」。如果您使用此功能測試了您的應用,請進入您的真實帳戶的帳戶偏好設置,並從應用的訪問權限中刪除此選項。 現在,這將允許多個用戶登錄

private LiveAuthClient authClient; 

private void PhoneApplicationPage_Loaded_1(object sender, RoutedEventArgs e) 
{ 
    this.authClient = new LiveAuthClient("yourclientidhere"); 
} 

,那麼你可以調用this.authClient.Logout()。當你想改變用戶。

相關問題