Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
49 views

TL;DR Has anyone been able to get AWS Location Place Index working with PHP SDK & API Key without a custom Place Index? AWS Location service recently dropped the requirement to provision your own ...
Jan Klan's user avatar
  • 1,034
0 votes
0 answers
43 views

I'm working on a project in Laravel 12, that uploads to AWS S3 storage, every time I upload with Storage:disk('s3')... I get an error that the manifest.json file was not found in the aws package. ...
phpcoder's user avatar
-1 votes
1 answer
35 views

Using latest version of aws-sdk-php, while uploading object to s3. Getting "error": { "type": 1, "message": "Uncaught Error: Call to ...
Nitesh Bhargava's user avatar
0 votes
0 answers
143 views

I enabled transfer acceleration for an s3 bucket using the aws PHP sdk, I was able to create a presigned download URL that uses transfer acceleration using the following code: use Aws\S3\S3Client; $...
Luigi Corciulo's user avatar
1 vote
1 answer
238 views

User login using API we get AccessToken, RefreshToken and IdToken. AccessToken works only for 1 hour set on the App Client period. Based on RefreshToken we can get a new AccessToken & RefreshToken....
Dipak PHP's user avatar
3 votes
1 answer
3k views

First and foremost, I am a total noob when it comes to using Amazon's SDK for PHP so bare with me. I am trying to follow along with a video tutorial on how to upload a file to an AWS S3 bucket using ...
Tychoash's user avatar
0 votes
1 answer
1k views

I'm usng AWS PHP SDK to call bedrock API. Here is the code: $this->bedrockRuntimeClient = new BedrockRuntimeClient([ 'region' => $region, 'version' => $version, '...
primerg's user avatar
  • 33
0 votes
1 answer
221 views

We are using AWS SignatureV4 to make requests to an API Gateway using the IAM authoriser and are finding that signing only works some of the time... We are signing requests using the AWS SDK. $...
ComputerUser's user avatar
  • 4,892
0 votes
2 answers
1k views

According to https://stackoverflow.com/a/65675842/569976 , you can use the AWS S3 CLI client to sort the results of a list-objects-v2 by the last modified date, as follows: aws s3api list-objects --...
neubert's user avatar
  • 17k
0 votes
1 answer
137 views

I am trying to interact with AWS DynamoDB from my website with AWS SDK PHP 3.0 using the code below: $client = new \Aws\DynamoDb\DynamoDbClient(['version' => 'latest', 'region' => "ca-...
Medical physicist's user avatar
1 vote
0 answers
231 views

I need to list all regions of an AWS account (part of an organization). I plan to use "AccountClient" with "ListRegions". I connected to the account via a role named 'myrole' witch ...
kent2004's user avatar
0 votes
2 answers
2k views

We have updated our web site to PHP 8.2 and now the AWS SDK is throwing errors. I am not sure where to look in the files to figure out what version of the SDK I have installed. And it is very unclear ...
K. Kaiser's user avatar
0 votes
0 answers
181 views

I'm using https://github.com/maxbanton/cwh to send logs to cloudwatch. It works locally but cloud. This is the erro that is returning on cloud. I specified lates and 2014-03-28 version. laravel....
Eder Vásquez's user avatar
0 votes
2 answers
216 views

I am trying to interface my php code with AWS Marketplace. There seems to be no example in PHP, anywhere. $client = new MarketplaceMetering\MarketplaceMeteringClient($config); $request = array(); $...
Richard Bernstein's user avatar
0 votes
1 answer
328 views

I want to get a AWS S3 url to be able to download a file from a browser but I keep getting this error <Error> <Code>SignatureDoesNotMatch</Code> <Message>The request signature ...
MalcolmInTheCenter's user avatar
0 votes
2 answers
178 views

First, allow me to predicate that I am a relative noob to much of this, and self-taught in the rest. I have a simple DynamoDB table set up named 'NeedsSystemData' that includes one record with the ...
Galathir Darkstone's user avatar
0 votes
1 answer
856 views

I am using PHP 8.1.21 and Laravel 10.14.1 in a pretty simple setup. I've implemented AWS SES for outgoing email before with no trouble but in this case I get the following error: Aws\Common\Client\...
Staple's user avatar
  • 712
0 votes
1 answer
399 views

With AWS Pinpoint Journeys, I am running a 7step onboarding campaign spaced over 7 days. While the campaign is running, I notice improvements I can make. However you cannot edit a journey that is ...
David Woodworth's user avatar
0 votes
1 answer
841 views

I am using the AWS PHP Client to create buckets in S3 and upload objects to them. Previously I was using ACL for making the buckets and objects publicly accessible (to the world). Using ACL with my ...
Cam Mac's user avatar
-2 votes
1 answer
56 views

I have installed aws-php-sdk in Laravel and configured it correctly where putitem / getitem working when executing through HTTP/HTTPS in the browser and curl. However, when I try to execute the same ...
Ash's user avatar
  • 1
2 votes
1 answer
627 views

Hi I am trying to create a schedule with aws eventbridge scheduler and reffering the documentation from the aws-sdk for php I am getting an error as Parameter is not valid. Reason: Provided Arn is ...
Hussain's user avatar
  • 179
0 votes
2 answers
1k views

I have written this standalone program in PHP for EC2 Instance to read secrets from SecretsManager (EC2 Instance and Secret are in the same region). I have AWS SDK PHAR in the same folder as the ...
Rahul Saini's user avatar
  • 2,351
1 vote
0 answers
171 views

I want to retrieve value from the arn(AWS Resource Names) using aws secret manager in php. I already had the arn(arn:aws:secretsmanager:Regionxxx:xxxxx:secret:xxxxx). I get aws credentials exception ...
user8913050's user avatar
3 votes
2 answers
1k views

I am using the AWS SDK for PHP to push a message into an AWS SQS queue. I'd like to be able to set the visibility timeout for specific messages to be different than the default. It would make sense to ...
crmpicco's user avatar
  • 17.3k
2 votes
0 answers
717 views

I'm trying to use SesClient from aws sdk php to send email but it returns the following error use Aws\Ses\SesClient; $SesClient = new SesClient([ 'version' => 'latest', '...
Nathan Almeida's user avatar

1
2 3 4 5
7