use apple feature "sign with apple",the authorization prompt is invalid-client - sign

i configured the appId and servicesId according to the document and then spliced the authorize link to try to get the authCode.
appId
enter image description here
servicesId
enter image description here
apple ahthorize link
https://appleid.apple.com/auth/authorize?client_id=com.alipayplus.ds.client&response_type=code&redirect_uri=https%3A%2F%2Fwww.baidu.com&scope=name%20email&response_mode=form_post&nonce=532343141dsf
i can't find where is the configuration problem?
i would like to ask about the troubleshooting method of this problem.

Related

AWS cognito verification link issue

I tried to signup with my email using aws cognito. I received the email verification link and when i clicked on it says 'Invalid link provided, please request a link again'. But when i tried to login it was successful. Why is it happening.
This could be caused by your Email provider visiting links before presenting the email to you. For example Outlook has something called Safe Links. This will cause the verification link to be consumed before you have a chance to click it.
I had the same issue and after about a day of debugging I reached out to AWS Enterprise Support. Outlook Safe Links is something they mentioned within a few minutes of chatting. If you are a part of a larger organization it is probably unfeasible to have it disabled. You can try signing up with a different Email Provider such as Gmail and see if the links are untouched.
I offer no solution to the problem, just a possible explanation.

Unable to validate account confirmation in WSO2 version 6.0

When I'm validating the account by clicking the link given in email during account verification process(sign up process), I'm getting below error. Can you please suggest what is causing this error?
enter image description here
In the self-registration config section, there is a configuration for callback validation. It is provided as a regex. Make sure you have configured it properly.

"invalid request" when attempting to link NEST devices to my app

I'm at the step where you link the Google account where the NEST devices are authorized in these instructions, I build up the URL with the project ID from the device access console and my newly created OAuth 2.0 Client ID then visit the resulting URL (https://nestservices.google.com/partnerconnections/etc....).
It shows my two NEST devices, I slide them on, click next and consistently get:
You can’t sign in because sent an invalid request. You
can try again later, or contact the developer about this issue.
along with Error 400: redirect_uri_mismatch
The instructions do mention:
you may get a warning screen that states Google hasn't verified this app. If so, to continue, click the Advanced option and then click Go to Project Name (unsafe).
But there is no "Advanced option" on this screen.
I've verified that the Smart Device Management API is enabled and that the Smart Device management scopes have been added to the project,
Any ideas?

Change the email placeholder in cloudfoundry uaa

I've managed to install and configure a Cloudfoundry UAA app in my network. I'd like to change the Email placeholder text to say Username. Is there a way to do this through the uaa.yml file?
Please make sure that your login.yml has the the following setting
login:
prompt:
username:
text: Employee ID

Using graph api to obtain a direct link on page feed

I have now tried a lot of combinations, but I fail to reproduce the same result as obtained when posting manually:
I want to post a link to a facebook page I have created (not to the user wall). I do this by obtaining the page access token:
$page_access = $facebook->api('/'.$pageid.'?fields=access_token');
Then I set (before posting):
$facebook->setAccessToken($page_access['access_token']);
Finally my post is:
$attachment = array('message' => 'this is my link',
'link' => 'http://www.facebook.com'
;
$sendMessage = $facebook->api('/'.$pageid.'/feed/','post',$attachment);
I have also tried setting the name, link and description fields in the $attachment structure, but the published result always includes a link of the type:
https://www.facebook.com/connect/uiserver.php?app_id=_my_app_id&method=permissions.request&redirect_uri=http%3A%2F%2Fwww.facebook.com%2F&response_type=code&display=async&auth_referral=1
instead of the direct link to http://www.facebook.com. However, if I post the link manually I get a direct link (this is what I want) and also a "Share" action.
So my question: How do I convince the api to publish the link as is, and also get a "Share" action?
The reason your app is not posting a direct link is because you have Authenticated Referrals enabled on your application. This means Facebook always tries to get the user to Connect to your links before they are redirected to the link.
Try disabling Authenticated Referrals and see if it makes a difference.