diff --git a/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml b/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml
index 0e9b987..ffb06e7 100644
--- a/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml
+++ b/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml
@@ -7,10 +7,10 @@
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
-
-
+
+
-
+
diff --git a/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml.cs b/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml.cs
index 345277b..c784324 100644
--- a/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml.cs
+++ b/PocketSharp.Examples/PocketSharp.Silverlight/MainPage.xaml.cs
@@ -1,16 +1,8 @@
-using System;
-using System.Collections.Generic;
+using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
-using System.Linq;
-using System.Net;
using System.Windows;
using System.Windows.Controls;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Shapes;
namespace PocketSharp.Silverlight
{
@@ -39,7 +31,7 @@ namespace PocketSharp.Silverlight
PocketClient client = new PocketClient(
consumerKey: "15396-f6f92101d72c8e270a6c9bb3",
callbackUri: "http://frontendplay.com",
- accessCode: "2c62cd50-b78a-5558-918b-65adae"
+ accessCode: "80acf6c5-c198-03c0-b94c-e74402"
);
List items = null;
diff --git a/PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs b/PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs
index 2a85c00..7a6c6de 100644
--- a/PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs
+++ b/PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs
@@ -1,11 +1,10 @@
-using System;
+using PocketSharp.WP8.Resources;
+using System;
+using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
-using PocketSharp.WP8.Resources;
-using PocketSharp;
-using System.Collections.Generic;
-using System.Threading.Tasks;
using System.Diagnostics;
+using System.Threading.Tasks;
namespace PocketSharp.WP8.ViewModels
{
@@ -68,14 +67,14 @@ namespace PocketSharp.WP8.ViewModels
PocketClient client = new PocketClient(
consumerKey: "15396-f6f92101d72c8e270a6c9bb3",
callbackUri: "http://frontendplay.com",
- accessCode: "2c62cd50-b78a-5558-918b-65adae"
+ accessCode: "80acf6c5-c198-03c0-b94c-e74402"
);
List items = null;
try
{
- items = await client.Get().ConfigureAwait(false);
+ items = await client.Get();
items.ForEach(item =>
{
diff --git a/PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml.cs b/PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml.cs
index 43c0187..6b6a894 100644
--- a/PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml.cs
+++ b/PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml.cs
@@ -1,9 +1,7 @@
-using System.Windows;
-using System.Windows.Controls;
+using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
-using System.Collections.Generic;
-using System;
+using System.Windows;
namespace PocketSharp.Wpf
{
@@ -35,7 +33,7 @@ namespace PocketSharp.Wpf
PocketClient client = new PocketClient(
consumerKey: "15396-f6f92101d72c8e270a6c9bb3",
callbackUri: "http://frontendplay.com",
- accessCode: "2c62cd50-b78a-5558-918b-65adae"
+ accessCode: "80acf6c5-c198-03c0-b94c-e74402"
);
List items = null;