Lloyd
CDCloudflare Developers
•Created by Lloyd on 1/30/2025 in #general-help
Unable to verify my email address
I created a new CF account.
Under “My Profile - Preferences” it shows “Your email address is not verified. Send verification email” so I click on “Send verification email” and it shows “Verification email sent” but no email is received
I have done the following:
Checked SPAM folder (no email from CF)
Checked my email server delivery log (No email from CF)
Tried verifying from another browser after clearing cashe. (No email from CF)
Tried verifying using incognito mode. (No email from CF)
I thought about changing the email address but CF won’t let me change it before I verify my email address.
1 replies
CDCloudflare Developers
•Created by Lloyd on 2/17/2023 in #workers-help
the other API service blocked ip from cloudflare (fetch issue)
I am writing a workers code that sends http requests to other API servers(third-party) and stores the responses in r2.
I used "fetch()" to get api response but it returns 403 error via domain workers request.(~.~.workers.dev)
But it works on via clicking test button in workers quick edit.
It seem to blocking api request by some conditions at third party API.
So I checked each "X-Forwarded-For"(workers ip) header. And the result is below.
clicking test button in quick edit = 34.29.117.83 (owned by google)
request via domain(~.~.workers.dev) = 2a06:98c0:3600::103 (owned by cloudflare)
I think the third-party API server blocked ip owned by cloudflare to block WARP vpn(cloudflare service).
Therefore The third-party API server never allow ip owned by cloudflare.
So is there way to change workers ip to ip that not owned by cloudflare? (using google owned ip like test request)
Or when execute fetch() is there a way of deceiving third party API server?
I tried set X-Forwarded-For header but it didn't overwrote.
thank you for reading this question😁
5 replies