gtx / magento2-webservice
Sample Magento 2 module for GTX webservice authorization.
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: >=7.4.0
- symfony/http-client: *
This package is not auto-updated.
Last update: 2025-03-29 02:37:37 UTC
README
Sample Magento2 plugin for GTX webservice authorization.
Configuration
For NTLM authentication setup go to Stores -> Configuration -> Topex -> Webservice
Usage
<?php use Gtx\Webservice\Model\File as WebserviceFile; class MediaGalleryProcessorPlugin { /** * @var WebserviceFile */ private WebserviceFile $webserviceFile; /** * @param WebserviceFile $webserviceFile */ public function __construct( WebserviceFile $webserviceFile ) { $this->webserviceFile = $webserviceFile; } /** * @param string $url * @return string */ public function getImageContent(string $url): string { return $this->webserviceFile->fetch($url); } }