- Issue created by @rhovland
- πΊπΈUnited States rhovland Oregon
I have not found any PHP projects that implement the API in PHP except this one which is more of a script than a library
https://github.com/JohnAwesomeJr/php-ups-api-rate-oauth2However I did come across this project for UPS which mentions it was partly generated using Jane using the published UPS OpenAPI spec.
https://github.com/ShipStream/ups-rest-php-sdk#developmentUSPS publishes OpenAPI spec files for their API. We could use that to generate most of the code for a library using Jane.
https://developer.usps.com/sites/default/files/apidoc_specs/US_Postal_Se...
https://github.com/janephp/janephp - πΊπΈUnited States bill.zero
They may have turned off the Web Tools API last night. My rate requests are not getting responses.
- πΊπΈUnited States bill.zero
They apparently turned Web Tools back on. Watchdog has 200 status on USPS responses since 14 Jan 2025.
- πΊπΈUnited States bobburns
It seems easiest to use the Oauth2_client to authenticate integrating the existing Commerce USPS module and adding the new API calls.
Is anyone working on this???
- πΊπΈUnited States kevinhbruce Maryland
We're using the USPS module in our bookstore, so we're interested in the update as well.
- πΊπΈUnited States rhovland Oregon
Ok looks like we now have a end of service date
"The Web Tools API platform will be retired on January 25, 2026."
https://www.usps.com/business/web-tools-apis/welcome.htmThe first thing that needs to happen is a PHP API client being made
Once there is a client (the script I linked is not sufficient) then a new major version of this module can be created and adjusted to use the API client.
- πΊπΈUnited States rhovland Oregon
I'm going to put some time into evaluating janephp and openapi-generator and create a library for USPS using one of these generators. Using a generator will also help with adapting to subsequent changes to the API as we can just feed the new spec into it and audit the changes made for accuracy.
Once the library is made I'll create a new version of the USPS module and have the maintainers merge that into this project.
This is going to take a few months as I will be working on this in the spare time between projects at work. But now that there's an end date the urgency of this has placed this higher on my list.
- πΊπΈUnited States bobburns
The first issue is Oauth2 authentication. I have installed the Oauth2_client and modified the schema yml file to add the crid and mid needed to get a token, however the form did not change even after clearing the cache, but I did not uninstall and reinstall the new modified version.
It appears the API is the same but there is an issue of xml along with the Oauth2 authentication.
USPS lists the deprecated and new calls that can be manually changed.
There is a notice that USPS works with Oauth2 v3 and it appears Drupal 10 Oauth2_client is v4 possibly. Do not know if it is backward compatible if so.
My credentials work as I used that first script to test a flow connection - it connected but threw an error on the code for request
I have not modified the Oauth2 client for the USPS requests in commerce_usps yet because until I get the API information config section working with the four values I have ready to there it matters not. There is also an issue it may use the "key" module.
Once I do that the Oauth2_client will see the client and register it.
Does anyone know if I need to do more than modify the schema yml to get the config file to change???