I'm having trouble understanding how to add administrators to my app. Of course, as the creator of the app, my account is an administrator. To add another, I go to the Administration Console, and click on Permissions in the sidebar. There's no option on that page to add an admin, but it offers a link to the "new Permissions page." On that page, I can add another account as an owner, but when I log in as that account, my app isn't visible in the Administration Console, and that account fails the programmatic users.is_current_user_admin() test.
Is App Engine just being buggy, or am I missing something?
You have first visited the old appengine console's permission page (https://appengine.google.com/permissions). Google removed the add member functionality from this page.
When you clicked the "Try the new Permissions page.", It will redirect to new appengine console(https://console.developers.google.com/project/your-appid/permissions). In this page, You can add new members to your application with permission is owner or Can edit or Can view. Once you add a member, Google will send the invitation to the member. They need to accept it. You can view the status from the same page. If the member is not accepted the invitation yet, You can see the status as "Invitation sent. Waiting for response."
Once they accept the invitation, Member can able to access your application.
Related
I have setup a site but when i am opening this site i am getting this
type error, Authorization Required
You must first log in or register before accessing this page. If you
have forgotten your password, click Forgot Password to reset it.
click and check image
You need to make sure that the visualforce page which you created has access to Guest user profile. To navigate to Guest user, do as below:
Go to Setup -> Develop -> Sites -> Click Site name -> Public Access Settings
The sites under Digital Experiences / All sites are called Experience Cloud sites.
The sites under Sites and Domains > Sites are called Salesforce sites.
These are different categories of sites and they come with different behaviors.
Based on the screenshot you shared with me, (the url has force.com included), it looks like your site is in the second category, please be aware of that:
Users from the Salesforce sites can only see their own data. If your program is trying to access data recreated by other, you will get the Authorization Required error.
As a way to test this, try to comment out the SOQL statements, the error message may go away.
also check out the following link:
https://help.salesforce.com/s/articleView?id=release-notes.rn_networks_guest_user.htm&type=5&release=228
The Secure guest user record access setting was enabled in Summer ’20, but could still be disabled during that release. To safeguard your Salesforce org’s data, in Winter ’21, this setting is enabled in all orgs with communities or sites and can't be disabled. The Secure guest user record access setting enforces private org-wide defaults for guest users and requires that you use guest user sharing rules to open up record access. You also can't add guest users to groups or queues or grant guest users record access through manual sharing or Apex managed sharing.
I'm building a static website in Azure and want to use this function:
https://learn.microsoft.com/de-de/azure/static-web-apps/authentication-authorization
When I try to invite a user, it explains that an administrator as to accept this invitation, but where does he have to do this? I cannot see an option for this in portal.azure.com
it also seems not to be possible to "preload" the roleassignments to the users. because on the "acccessmanagement" site for this website in portal.azure.com it grants the access to the complete resource in portal.azure.com, but I just want the user to use the website.
Any ideas?
Thanks,
kind regards
If you are following the invitation instructions in that document, you need to copy the link from the "Invite" link box and actually send it to the person.
Navigate to a Static Web Apps resource in the Azure portal.
Under Settings, click on Role Management.
Click on the Invite button.
Select an Authorization provider from the list of options.
Add either the username or email address of the recipient in the Invitee details box. For GitHub and Twitter, you enter the username. For all others, enter the recipient's email address.
Select the domain of your static site from the Domain drop-down.
The domain you select is the domain that appears in the invitation. If you have a custom domain associated with your site, you probably want to choose the custom domain.
Add a comma-separated list of role names in the Role box.
Enter the maximum number of hours you want the invitation to remain valid.
The maximum possible limit is 168 hours, which is 7 days.
Click the Generate button.
Copy the link from the Invite link box.
Email the invitation link to the person you're granting access to your app.
I am using the ios.facebook_permissions=user_posts build hint to get the permission to read user posts but the login dialog presents only the default profile, email and likes permissions.
Facebook now requires you to go thru an approval process for any risky permission
Here is the documentation for adding a new member to a project—pretty simple.
However, when I add a new member to the project, I get an error:
Error
The specified invitation was not found.
The member I'm adding is an alias account. When I say alias account I mean my main account (username#gmail.com) owns the project, and I'm trying to add a different email that I own (me#mydomain.com). me#mydomain.com is a sub account of username#gmail.com.
When I click the confirmation link, first I have to type in me#mydomain.com's password, then I am redirected to type in username#gmail.com's password, and finally I am redirected to the project where I get the ugly error staring me in the face.
I would be talking with google right now if I could, but I'm a bronze member…
This answer explains that if I want to change the email that displays on the oauth permissions screen, I need to add the email to the project. I'm trying to add the email to the project so I can display me#mydomain.com instead of username#gmail.com on the oauth permissions screen.
Looks like it isn't possible:
Because multiple sign-in is not supported, you will access Google Developers as your default account, username#gmail.com.
It is possible if you don't use sub-accounts! I got it working!
Instead of having me#mydomain.com as a sub-account of username#gmail.com, I had to remove me#mydomain.com from username#gmail.com, then create a new completely separate google account for me#mydomain.com. After doing that, everything was a cinch!
In DotNetNuke, Administrator only can add new user. I want to allow other user with custom role as well to Add New User. Is it possible with DotNetNuke ?
It used to be possible, though I haven't tried this in quite a while.
Basically what you can try a couple of options.
1) You can assign PAGE permissions on the User Accounts page in DNN to users of a specific role. Then you will need to provide those users a LINK to the page, as they won't see the admin menu and won't have access to the link via the Admin menu.
2) You can actually (used to be able to) place the User account module on a page that other roles have access to, the problem is that the User Accounts and Security roles modules are "premium" meaning that you have to specifically (as a superuser) allow them for use in a portal before they can be placed on a page. You do this from the host/extensions page and click on the edit pencil next to the module, find the premium section then assign it to the specific portal. Then you will add the module(s) to a page, you'll find that more than just the User Account module gets added, so you will want to remove the extra ones by deleting them from the page.
Hopefully one of those two options will work for you.