新手在这里,兴奋地问我的第一个问题。 : - )
我正在使用Visual Studio 2015中的Xamarin.Forms(shproj)在C#中编写一个应用程序,需要使用这些instructions之后的服务帐户将数据库上传到我的Google云端硬盘中的文件夹。我使用Android设备进行USB调试。每当我尝试创建上传所需的ServiceAccountCredential时,“System.NotImplementedException:方法或操作未实现。”被抛出。这是相应的标记代码:
var certificate = new X509Certificate2(CertificateBytes, "notasecret", X509KeyStorageFlags.Exportable);
var credential = new ServiceAccountCredential(new ServiceAccountCredential.Initializer(serviceAccountEmail)
{
Scopes = scopes
}.FromCertificate(certificate));
基本上,我遇到与here描述的第二个标志相同的问题,但没有编写第一部分。
在我不得不更换为新的Windows映像并再次安装Visual Studio 2015之前,上传工作正常。我尝试创建一个新项目并重新安装所有连接的软件包,但仍然没有运气......
拜托,有没有人知道如何解决这个问题?