Xamarin.WindowsPhone 8.1 项目抛出 MobileServiceInvalidOperationException

MobileServiceInvalidOperationException is thrown on Xamarin.WindowsPhone 8.1 project

我正在尝试使用 Azure 移动服务和 Xamarin。我遵循官方教程的所有说明,为应用程序创建了 Azure 后端,并从 Azure 下载了 Xamarin.Forms 示例快速启动应用程序。 TodoItemManager.cs中有代码:

public async Task<ObservableCollection<TodoItem>> GetTodoItemsAsync(bool syncItems = false)
    {
        try
        {
            IEnumerable<TodoItem> items = await todoTable
                .Where(todoItem => !todoItem.Done)
                .ToEnumerableAsync();

            return new ObservableCollection<TodoItem>(items);
        }
        catch (MobileServiceInvalidOperationException msioe)
        {
            Debug.WriteLine(@"Invalid sync operation: {0}", msioe.Message);
        }
        catch (Exception e)
        {
            Debug.WriteLine(@"Sync error: {0}", e.Message);
        }
        return null;
    }

我收到 MobileServiceInvalidOperationException 消息“Invalid sync operation: The request could not be completed. (Not Found)”。
我已经在 UWP App 上测试了 Azure Backend,它运行良好。所以看起来 WP8.1 项目中存在问题。有人可以帮助解决这个例外吗?

所以..我忘记在 Windows Phone

上启用互联网连接