简体   繁体   English

如何使用Xamarin.Forms在iOS和Android App中实现Docusign?

[英]How to implement Docusign in iOS and Android App with Xamarin.Forms?

I need to implement a user to make sign in my app using DocuSign. 我需要实现一个用户以使用DocuSign登录我的应用程序。 I have implemented application using Xamarin.Forms. 我已经使用Xamarin.Forms实现了应用程序。 How to implement Docusign in Xamarin.Forms? 如何在Xamarin.Forms中实现Docusign?

You need to make user/signer an embedded signer . 您需要使用户/签名者成为embedded signer By adding clientUserId property in the signer node, like below: 通过在签署者节点中添加clientUserId属性,如下所示:

"signers": [{
      "email": "signeremail@email.com",
      "name": "Signer Name",
      "recipientId": "1",
      "clientUserId": "12345",
      "routingOrder": "1"
    }

When you want signer to sign in your App, then you will call below endpoint 当您希望签名者登录您的应用程序时,您将在以下端点调用

POST /v2/accounts/{accountId}/envelopes/{envelopeId}/views/recipient

with requestBody like below: 与requestBody如下所示:

{
  "authenticationMethod": "Password",
  "clientUserId": "12345",
  "email": "signeremail@email.com",
  "returnUrl": "YourAppUrl",
  "userName": "Signer Name"
}

This API call will generate a URL which will have expiry of 300 seconds, redirect user to this URL and make user Sign using this URL. 此API调用将生成一个有效期为300秒的URL,将用户重定向到该URL并使用该URL进行用户签名。

More details for this API call are available at EnvelopeViews: createRecipient 有关此API调用的更多详细信息,请参见EnvelopeViews:createRecipient

Example in different coding languages are also available at DS Developer Center DS Developer Center也提供了不同编码语言的示例。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Xamarin.Forms 如何在 Android 和 iOS 上添加应用评​​级? - Xamarin.Forms how to add app rating on Android and iOS? 如何在Xamarin.Forms中实现Android服务 - How to implement an Android Service in Xamarin.Forms 如何实现 Xamarin.Forms 的共享扩展 - iOS 项目? - How to implement Share Extension to Xamarin.Forms - iOS project? 如何在适用于 IOS 的 xamarin.forms 应用程序中设置应用程序的应用程序图标 - how to set app icon of app in xamarin.forms app for IOS 如何在我的 Xamarin.Forms 应用程序中实现摄像头? - How do I implement a camera in my Xamarin.Forms app? Xamarin.Forms - 在 Android 和 Z1BDF605991920DB141ZCBDF8508204 中创建应用快捷方式 - Xamarin.Forms - Create app shortcut in Android and iOS device 如何在Xamarin.Forms中的Android版PageRenderer中实现IPlatformParameters - How to implement IPlatformParameters in PageRenderer for Android in Xamarin.Forms Xamarin.Forms实现Android ActionBar - Xamarin.Forms implement Android ActionBar 当Android使用内置Material Design时,如何设计Xamarin.Forms iOS应用程序的样式 - How to stylize a Xamarin.Forms iOS app when Android uses built in Material Design 如何使用xamarin.forms应用程序在android和ios设备中启用日志记录选项 - How to enable logging option in android and ios devices using xamarin.forms app
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM