Create Alert
Google.GoogleAlertAPI ga = new Google.GoogleAlertAPI("[email protected]","XXXXX");
Google.GoogleAlertAPI.Alert alert = new Google.GoogleAlertAPI.Alert();
alert.query = "GoogleAlertAPI";
alert.region = Google.GoogleAlertAPI.Region.Taiwan;
alert.language = Google.GoogleAlertAPI.Language.ChineseTraditional;
alert.deliveryTo = Google.GoogleAlertAPI.DeliveryTo.Feed;
alert.howMany = Google.GoogleAlertAPI.HowMany.AllResults;
alert.sources.Add(Google.GoogleAlertAPI.Sources.Blogs);
alert.sources.Add(Google.GoogleAlertAPI.Sources.Web);
ga.createAlert(alert);
List all Alert
Google.GoogleAlertAPI ga = new Google.GoogleAlertAPI("[email protected]","XXXXX");
List<Google.GoogleAlertAPI.Alert> list = ga.getAlerts();
foreach(var alert in list){
// alert object
}
Delete Alert
Google.GoogleAlertAPI ga = new Google.GoogleAlertAPI("[email protected]","XXXXX");
ga.deleteAlert(alert.id);
Modify Alert
Google.GoogleAlertAPI ga = new Google.GoogleAlertAPI("[email protected]","XXXXX");
ga.modifyAlert(alert);