Flutter Pub.dev create publisher not working - flutter

I am trying to link a publisher to my profile but can not make it work. I have a website https://christiankonnerth.me.
Steps:
Go to pub.dev and create publisher
insert christiankonnerth.me as publisher domain
Get error
Go to Google Search Console
succesfull verification
back to pub.dev to get the same error from 3
I couldn't find anything on this. Any help is appreciated.

I was signed into another Google Account then on pub.dev . After signing into the same account I was able to add the DNS record and create a publisher.

I resolved it, by searching my domain from here
https://search.google.com/search-console/about
and verified the association.
then, try again to create my pub.dev publisher, and I succeeded created it.

Related

Create automation test in cypress that will register user with different emails and accept registration message on user email

Until now I was using MailSlurp for this task but it has limits when using the basic plan.
Is there any other way that would solve the problem?
Test Case Steps:
Register user with random email
Go to the created email address and click the activation link sent by the app
I found the solution.
I used a small library called gmail-tester https://www.npmjs.com/package/gmail-tester, and it does its job perfectly.
I've had a problem with configuring it but in the end, it's working.
I can check now has user received an email, and assert the content of the emails.
You can use faker to generate a random word and then just add that word to the end of your email with a + it would look something like this
cy.get('someElement').type(`something+${faker.random.words(1)}#example.com`);
Then you can just navigate to your own email address and click the link from there. The only issue you are going to have is that you wont be able to do this all is the same test case as cypress does not support cross browser testing.
Also Im not sure if the activation link redirects you or not, but if it does you wont be able to navigate to that link either.
Here is an awesome article showing how you can use MailTrap to do this:
https://humble.dev/testing-an-email-workflow-from-end-to-end-with-cypress

Singning up on tawk.to gives me an access denied error

enter image description here
I am trying to add live chat on my laravel app using the tawk.to plugin but when I try to signup to get the integration code, I have the 1020 error (access denied).
Is there a way around this? I really need to use it or probably, someone should suggest another free live chat package to use for my Laravel application
I had thesame issue when trying to use it too but I figured out they were using cloud flare to restrict some locations such as African countries like Nigeria, etc. So the fix is simple if you can change your location with VPN or use a Tor browser(which I usedin my own case) I was able to sign up and use the platform

How to enable post code entry text box in flutter-stripe plugin?

currently, we using bellow packages in a flutter to use stripe as our paymentgateway,
https://pub.dev/packages/stripe_payment
if we compare flutter integration with a web interface (laravel-stripe) ( stipe intent ),
there are 2 different
a) In Web there is an option to enable "postcode" so that users can type postcode but in flutter-stripe packages, it's missing.
b) in laravel-stripe, when there are some issues with stripe i.e (not sufficient fund or postcode validation issues, we get clear messages back from the stripe,
however, in stripe-flutter plugin we just get basic "payment declined"
my question is,
a) Can we enable postcode entry when using a flutter-stripe plugin?
b) when using fluter-stipe plugin, can we get more detailed message from stripe when a payment fails?
Please let me know
we are about to go live but now we realized these two issues
Thanks
I'm not familiar with Flutter, but you may want to ask other users in the issues for the repository. Note that this package is a port of tipsi-stripe, and links to its docs for examples.
You can see this doc describing creating a payment method including billing details.

Failed to connect to my Github Account with 2FA enabled after google authenticator reinstall

I had to get a new laptop and at the same time had to format my mobile where Google Authenticator was installed. Now when I try to login to my GitHub Account it asks for this 2FA option whereas I don't have it and also not sure what recovery keys its asking.
Is there anyone who has seen this issue. How can I get that bar code generated again for my account?
I have tried checking the internet but didn't find anything which could resolve this.
Have issue with only my Github Account.
GitHub provides instructions for recovering access to your account.
The first option it recommends is to use a recovery code¹, but it sounds like you don't have those. You would have received them when you first set up 2FA, and would have been prompted to put them in a safe place.
Another good option is to use your fallback phone number, assuming you configured one.
If neither of these options will work for you, please read the rest of the options listed on the page I linked above. You may need to contact GitHub support.
¹Note that you should also have received recovery codes for Google Authenticator itself. You should be able to use these to regain access to Google Autenticator which you can then use to log into GitHub.

Firebase Email Verification

I'm quite a noobie at Firebase. I'm asking for a sort of step by step guide to setup email verification.
Currently, my app uses basic email password login. I want users to be verified so I'm hiding content based on a user's emailVerified property. I'm calling the .sendEmailVerification() and it sends to the current user's email but, whenever I click the link in the email it says the link has expired or someone has used it, this also doesn't change the property. I suspect it has something to do with the api manager. I currently have my website hosted to the built-in Firebase hosting URL.
Based on this link in the docs (which refers to a similar function but not the exact one): https://firebase.google.com/docs/reference/js/firebase.auth.Auth#sendPasswordResetEmail
p.s. I can't find anything regarding this exact function in the docs.
I think I need some sort of listener at the link of the email or on my website?
Thanks in advance, any answers are appreciated.
there could be an issue with your browser api key. You may have some referrer restrictions on it. This could cause the misleading error (code expired or used) to occur. Either fix that issue or generate a new one in the Google console.