How i can to stop "change your password" message - google-chrome

I'm working in a project in Ionic for my university. When i reload the app and make login i receive this message:
How i can to stop this message.

This can give you an idea Google Chrome Support

Related

I can't set up **** clasp run ****

Purpose:
To be able to use clasp run on VS Code
I did...
followed this instruction. https://github.com/google/clasp/blob/master/docs/run.md
And I could successfully finish steps 1 - 4. As long as I know, I could get everything I was expecting.
Problem:
But on step 5, I got this error message below, check this screenshot.
screenshot
Error 403: access_denied
The developer hasn’t given you access to this app. It’s currently being tested and it hasn’t been verified by Google. If you think you should have access, contact the developer (xxxxxxxx#gmail.com).
Learn more
Request Details
The content in this section has been provided by the app developer. This content has not been reviewed or verified by Google.
If you’re the app developer, make sure that these request details comply with Google policies.
access_type: offline
response_type: code
redirect_uri: http://localhost:38159
client_id: xxxxxxxxxx.apps.googleusercontent.com
scope: https://www.googleapis.com/auth/script.webapp.deploy
Comment:
Does anyone know how to solve this problem? And thank you for reading.
Environment:
OS: Ubuntu 20.04.4 LTS
OS Type: 64-bit
GNOME: 3.36.8
Windowing system: X11
IDE: VS Code: 1.66.2
Node.js: 16.13.0
clasp: 2.4.1
Your project is still in testing; you either need to add the account you're trying to authorize as a test user, or set the project's publishing status to "In production" i.e. publish it.
Here's a video that shows you how: https://www.youtube.com/watch?v=x_NPvk0pk8g
The sidebar in that video isn't quite up to date however: I recommend searching for oauth in the top bar while having the appropriate project selected and clicking on OAuth consent screen.

MSAL Azure AD B2C authentication not working in chrome - incognito

Google's chrome browser update from 84.0.4147.89 to 84.0.4147.105 has broken MSAL login (authentication) in Incognito window for our application.
To verify that there is no issue with our application, I have tried Azure AD B2C login with the starter pack in Incognito browser and I see the same behavior. Has anyone experienced the same issue?
A similar issue was posted in the past by few developers. But the solution provided doesn't help.
https://support.google.com/chrome/thread/38855209?hl=en
FYI: Login works as expected in Chrome regular browser and other browsers
Starter pack details:
https://github.com/Azure-Samples/active-directory-b2c-javascript-msal-singlepageapp
Starter pack has msal 1.3.3 version. Couple of days ago, 1.3.4 version has been released and I tried that as well. I see an error during acquiretokensilent(CallApi) in incognito while I don't get the same exception in regular window
The only difference between starter pack and our application is that we call acquiretokensilent immediately after the login is successful but in the starter pack acquiretokensilent is called on a button click(CallApi)
Azure AD B2C login issue in incognito window is fixed for me by enabling cookies in the google chrome settings. Below are the steps to enable cookies.
Chrome settings -> Privacy and Security -> Cookies and other site data -> 'Allow all cookies'
Moving answer from comments
I tried the starter pack by calling the acquiretokensilent after successful login as you mentioned. I received an error
User does not have an existing session and request prompt parameter
has a value of 'None'
The reason for this issue is due to not enabling the popup in chrome incognito mode. once i enabled the popup i was successfully able to call acquiretokensilent with out any error.
You can even provide sites to have cookies for current session.
CHROME SETTINGS --> PRIVACY AND SECURITY --> COOKIES AND OTHER DATA DATA -->
Sites that can always use cookies --> add site
For aquiresilenttoken(), add https://login.microsoftonline.com/*
Or your preferred authority URL.

Page not found with POST request in the django's admin when i click any of the save button in Production environment

At first, I tried installing MySQLclient via the terminal in a shared hosting platform only to get GCC permission denied, I contacted the admin pertaining the domain but to no assistance. I decided to use SQLite instead, everything worked fine, to my surprise no migrations were requested. Now when I wanted to add a product in the django admin page, when I click the save button I get an error that page not found with request Post. Everything works fine in development also when i request the same page while online in the admins page it loads fine. Kindly help
Here is the gcc permission denied
Got this error when i tried pip install mysqlclient in cpanel terminal
Here is the the product page at the admin
This is the product page while at the admin page
Here is the error when i click any of the save buttons
This the error i get when i try to save the product by clicking any of the save buttons
I escaped gcc permission denied by installing django 2.1 and followed this Error loading MySQLdb Module 'Did you install mysqlclient or MySQL-python?' worked for me but now the problem is when i add a product with an imagefield i get page not found with request post

Stop browser from requesting service-worker.js from server

On a former project I was working on there was a manifest.json file while allowed the app to be a progressive web application.
However even now on different projects I can see that my browser is requesting the service-worker.js file from the backend ie:
GET /service-worker.js 404 557.926 ms
How can I turn this off within my browser so I don't see these errant logs come through my app?
You need to unregister the service worker like such:
https://www.codementor.io/#himank/how-to-unregister-service-workers-n8mzf5jce
In case the link should stop working, these are the steps for Chrome.
open the dev console
click "Application" tab
click "Service Workers"
click "Unregister"

Polymer Starter Kit - ERR_FILE_EXISTS when trying to enable service worker

I am trying to follow the instructions from here to enable offline support (Service worker) in my polymer starter kit clone.
However, after making the changes in gulpfile.js, index.html and elements.html, I keep getting the following error whenever I refresh the page.
Also if I change the throttling setting to offline in Chrome Developer Tools and refresh, the page comes back with the "Unable to connect to the Internet" message so clearly the caching isn't working.
Is there anything else that I need to do?
Update: Just decoded the url (i.e. http://localhost:5000/bower_components/platinum-sw/platinum-sw-register.html&clientsClaim=true&skipWaiting=true&version=1.0) in the error message and ran it in Chrome and got a 404 error. If I remove everything after .html then the file can be found though.
I was having the same issue and turned out it's because the platinum-sw-cache is set to disabled in the dev development, which means service worker will not work if you run
gulp serve
So to test the PSK offline, you need to call
gulp serve:dist
You can also ignore that ERR_FILE_EXISTS error as explained by #pirxpilot.