Skip to content

Commit a22e885

Browse files
committed
update laravel-esign
1 parent a63e453 commit a22e885

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Identity/Identity.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class Identity extends AbstractAPI
1919
/**
2020
* @param string $orgId 机构 id
2121
* @param string $agentAccountId 办理人账号Id
22-
* @param string $contextId 发起方业务上下文标识
2322
* @param string $notifyUrl 发起方接收实名认证状态变更通知的地址
2423
* @param string $redirectUrl 实名结束后页面跳转地址
24+
* @param string $contextId 发起方业务上下文标识
2525
* @param string $authType 指定默认认证类型
2626
* @param bool $repeatIdentity 是否允许重复实名,默认允许
2727
* @param bool $showResultPage 实名完成是否显示结果页,默认显示
@@ -30,7 +30,7 @@ class Identity extends AbstractAPI
3030
*
3131
* @throws HttpException
3232
*/
33-
public function getOrgIdentityUrl($orgId, $agentAccountId, $contextId = '', $notifyUrl = '', $redirectUrl = '', $authType = '', $repeatIdentity = true, $showResultPage = true)
33+
public function getOrgIdentityUrl($orgId, $agentAccountId, $notifyUrl = '', $redirectUrl = '', $contextId = '', $authType = '', $repeatIdentity = true, $showResultPage = true)
3434
{
3535
$url = sprintf('/v2/identity/auth/web/%s/orgIdentityUrl', $orgId);
3636
$params = [
@@ -43,7 +43,6 @@ public function getOrgIdentityUrl($orgId, $agentAccountId, $contextId = '', $not
4343
'redirectUrl' => $redirectUrl,
4444
'showResultPage' => $showResultPage,
4545
],
46-
'orgEntity' => [],
4746
];
4847

4948
return $this->parseJSON('json', [$url, $params]);

0 commit comments

Comments
 (0)