Lambda error : Invalid value "undefined" for header "x-request-id" - http

I deployed Nuxt project on AWS Lambda function.
I followed this reference - https://dev.to/adnanrahic/a-crash-course-on-serverless-side-rendering-with-vuejs-nuxtjs-and-aws-lambda-1nk4
Everything looks good, however, when I test lambda function on aws console, there is 500 error:
There is no error in api-gateway logs.
Why this error came up and how to solve it?
I found that 'x-request-id' is made by client side. Then, should I add 'x-request-id' to api-gateway config?

Related

Infura and Brownie: HTTPError: 502 Server Error: Bad Gateway for url

I am getting this error every time I try to deploy my smart contract.
HTTPError: 502 Server Error: Bad Gateway for url
It seems Infura requires authentication for API calls as of today. How can I do this using brownie?
To add api_key to your brownie you need to add followings to your .env file created in the root of your project:
export WEB3_INFURA_PROJECT_ID=<your_api_key>
then go to your infura account and create a project then open Manage Key after that copy your key and add it to the line above. To make it available for brwonie to use run line below in terminal :
source .env
Check your code again and let me know if it worked

Rgoogleads - Issue with Service Account

I am trying to migrate my RAdwords code to rgoogleads and keep bumping into the same authentication nightmare. Some context:
Use R in my local computer, but all deployments are in a remote server that runs shiny, RStudio and other goodies.
I have managed to successfully activate the service account. I am (almost) sure about it since I successfully connect to Google Ads with Python.
I tried the same code with local OAuth2.0 and it works fine. However when I try to do so with the ServiceAccount authentication I keep getting the same error. I am sure I am doing something wrong.
This is a sample of my code:
library(rgoogleads)
gads_auth(path='../serviceAccount.json')
gads_auth(email='my_email#company.com',
developer_token = '_my_dev_token_'
)
gads_set_login_customer_id('xxx-xxx-0524')
gads_get_accessible_customers()
And this is the response
<error/rlang_error>
Request had insufficient authentication scopes.
Backtrace:
1. rgoogleads::gads_get_accessible_customers()
2. gargle::response_process(ans, error_message = gads_check_errors2)
8. rgoogleads:::error_message(resp)
9. rgoogleads:::gads_abort(paste(client_id, msg))
10. cli::cli_abort(message = message, ..., .envir = .envir)
Even when I try gads_has_token() it returns TRUE (!)
Any clues? I can't seem to get my head around this.

Meteor - Accounts.forgotPassword triggers internal server error whil Email.send is working fine

I'm meeting an issue on Meteor with Accounts.forgotPassword method.
My email smtp is well set up as I can use Email.send() without any issue once app is deployed.
But strangely, accounts.forgotPassword return an internal error.
When looking at the logs I have this error :
Exception while invoking method 'forgotPassword' Error: Mail command failed: 550-Requested action not taken: mailbox unavailable
I do not really understand why I would have mailbox unavailable error with Accounts.forgotPassword but not with Email.send()
Does anyone already met that kind of issues ?
I have already searched on the web for any clues but did not find anything :(
FYI I use ionos smtp
Since Email.send is working, I assume your MAIL_URL is set correctly, but your Accounts.emailTemplates is not. From https://docs.meteor.com/api/passwords.html:
In addition to configuring the email package’s MAIL_URL, it is critical that you set proper values (specifically the from address) in Accounts.emailTemplates to ensure proper delivery of e-mails!

Remote config not updating from console

I am facing a strange problem when I try to update my remote config value from firebase console and try to publish those changes, I am getting an error A general error occurred.. This problem happens randomly and when I checked my network console for the response I am getting a 500 error.
Following is the JSON response
{
code: 500
message: "Internal error encountered."
status: "INTERNAL"
}
Firebase Remote Config engineer here. We noticed some intermittent issues a few hours ago that we've since resolved. Thanks!

Apigee Fetch WSDL Error: Cannot invoke method startsWith() on null object

I am getting the below error when i am creating a API proxy on free Apigee cloud environment :
Fetch WSDL Error: Cannot invoke method startsWith() on null object
A similar issues was reported here
Apigee - Issue while configuring an API Proxy
I have kept the wsdl here
http://pastebin.com/tavinD2n
This got resolved . The wsdl file was named as XXX.WSDL , i changed it to XXX.wsdl and it worked. Strange isn't it? Should it be case sensitive?

Resources