FuelSDK-PHP icon indicating copy to clipboard operation
FuelSDK-PHP copied to clipboard

FuelSDK-PHP

Results 62 FuelSDK-PHP issues
Sort by recently updated
recently updated
newest added

I don't think this is a bug, but I'm hoping someone can tell me what I'm doing wrong. Line 78 of ET_Get.php always returns: ![Screen Shot 2019-08-27 at 3 20...

bug

https://github.com/salesforce-marketingcloud/FuelSDK-PHP/issues/168

Class ET_Perform line 31 has print_r($return); which makes web apps to not work.

Fixes: - #144 - #159 - To read the config file from a custom path: ```php $myclient = new ET_Client(true, false, null, true, '/path/to/config.php'); ``` To ignore config file: ```php...

Sorry for the reformatting this was really only a few changes to fix #159 by changing several instances of: ~~~php if ($this->tenantTokens[$tenantKey] == null) { ~~~ to ~~~php if (!isset($this->tenantTokens[$tenantKey])...

Why arent these updated? Am I missing something? its a community version but I see tons of open pulls....

enhancement

**Describe the bug** The ET_DataExtension_Row extends ET_CUDWithUpsertSupport, but does not implement the `put()` method, which is needed to actually perform an upsert. It only implements `post()` (for create) and `patch()`...

bug

**Describe the bug** When initializing ET_Client: Unable to validate App Keys(ClientID/ClientSecret) Php 7.4.4. Works with Php

bug

In ET_GetSupportRest.php i have noticed several issues I have been able to resolve manually updating the file on my end. - There are 2 lines commented out preventing the set...