Hi Team,
Let me explain the real scenario. We are building iOS native app (using Swift) and enabling social authentications for Google, Microsoft, and Facebook from the app only. On the other side, we are building a web application (using asp.net zero) to perform some operations via API only. My question is as follows
{ "authProvider": "string", "providerKey": "string", "providerAccessCode": "string", "returnUrl": "string", "singleSignIn": true }
Please suggest to us how can we do that OR can you give us some direction on this?
Hi,
The link is not working and giving error and I think this API is applicable to register user via email and password. However, I want an API for external authentication of a user on net zero side after authenticating the same user though any of social login on native iOS app. Please suggest, how can we do that OR can you give us some direction on this?
Hi,
I am just wondering if there is any official method available now to upgrade my ASP .NET zero project version from 10.4.0 to latest one.
Hi @ismcagdas,
I have to remove the site from CDN, as users were not able to access the buttons. Can you please let me know any specific time so that i will up the site again for you for testing.
Hi @ismcagdas,
Related to this issue. We have removed the Sucuri and using Stackpath for CDN now. But same issue facing again.
Hi,
I have tried and found the solution you shared did not help us.
When user import excel first time it works fine but whenever user tries to upload same excel with different data or same data it unable read few columns specifically DATETIME type columns and throws null reference error on following line:-
cellValue = formatter.FormatCellValue(worksheet.GetRow(row).GetCell(column));
Hi @ismcagdas,
I have achived this using "StaticRoles" feature:
roleManagementConfig.StaticRoles.Add(
new StaticRoleDefinition(
StaticRoleNames.Tenants.Tenant_Admin,
MultiTenancySides.Tenant)
{
GrantedPermissions =
{
AppPermissions.Pages_Administration,
AppPermissions.Pages_Administration_Roles,
AppPermissions.Pages_Administration_Roles_Edit
}
}
);
My question is this will apply permissions to newly created Tenant, But how we will add/Remove permissions to all existing tenants? Is there any feature available?
I have found something regarding this: https://github.com/aspnetboilerplate/aspnetboilerplate/issues/4528#issuecomment-510102409 is this ok?
Or can you guide me how to achieve this.
Issue is when we create a new tenant a default user is also created whose role is admin. So Whatever permissions we have applied to host(admin) role are automatically applied to tenant user (admin role). That's why same menu is appearing for Host admin and Tenant admin. Is there any way we can create a new role let's say "TenantAdmin" and whenever we create a new tenant role "TenantAdmin" is applied to default user?
Hi,
Yes,it worked.
Thanks
We are able to receive success response from OKTA however it is not getting mapped to application user. Following code always return null.
var loginInfo = await _authenticationManager.GetExternalLoginInfoAsync();
What is it looking for and how can we resolve it?