You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41-4Lines changed: 41 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,13 +68,40 @@ And I will get back a 200 OK response of the below form-data
68
68
69
69
[Small note on .env file - When putting the value for "AWS_Uploaded_File_URL_LINK" - I have to include a forward slash ("/") after ]
70
70
71
-
### Issue I faced after changing the AWS credentials - Upload was failing and in Postman was getting error something like "The AWS Key is not found in our system"
71
+
### Bit Time-wasting Issue I faced after changing the AWS credentials - Upload was failing and in Postman was getting below error -
72
+
73
+
```js
74
+
{
75
+
"error":true,
76
+
"Message": {
77
+
"message":"The AWS Access Key Id you provided does not exist in our records.",
And saw it was taking a completely wrong AWS credentials.
88
115
89
-
Then I ran the command `unset AWS_ACCESS_KEY_ID`, which was deleting the key and after doing this unset, then running
116
+
Then first I ran the following commands
90
117
91
118
`echo $AWS_ACCESS_KEY_ID`
92
119
93
-
was no more showing the value in the terminal, but as soon as I send a POST request to upload a document with Postman, again, I will get back that wrong key in the Terminal
120
+
`echo $AWS_SECRET_ACCESS_KEY`
121
+
122
+
And both will give different credentials than what I have in .env file.
123
+
124
+
Then I ran the command
125
+
126
+
`unset AWS_ACCESS_KEY_ID`
127
+
128
+
`unset AWS_SECRET_ACCESS_KEY`
129
+
130
+
which was deleting the key and after doing this unset, then running `echo $AWS_ACCESS_KEY_ID` was no more showing the value in the terminal, but as soon as I send a POST request to upload a document with Postman, again, I will get back that wrong key in the Terminal
94
131
95
132
### Final Solution - Plain old whole full system (my local machine) restart.
0 commit comments