Recent content by robdog

  1. robdog

    XF 2.2 Any work with providers and refresh tokens?

    I continued some of my work and here is the function that I created/updated: public function refreshAccessToken(TokenInterface $token) { $refreshToken = $token->getRefreshToken(); if (empty($refreshToken)) { throw new MissingRefreshTokenException()...
  2. robdog

    XF 2.2 Any work with providers and refresh tokens?

    I am attempting to work with a data provider that requires the use of a refresh token. I really wanted to use the provided vendor code, but just can't seem to get it working correctly. I am having a hard time with the function refreshAccessToken. Once I use that function, the saved token object...
  3. robdog

    XF 2.2 Upgrading the Guzzle 7.x

    This is good news.
  4. robdog

    XF 2.2 Upgrading the Guzzle 7.x

    For jobs that are run through a CLI command, it is breaking out of jobs and not completing them. Possibly due to my PHP setup, so I'll keep doing some digging.
  5. robdog

    XF 2.2 Upgrading the Guzzle 7.x

    Other composer packages such as Google's API Client, AWS SDK, PubNub SDK use Guzzle. But within my custom code, I am very familiar with that command...
  6. robdog

    XF 2.2 Upgrading the Guzzle 7.x

    @Chris D , thank you for the fast response! But this is the issue I am running into with Guzzle 6. I know the include path is our custom composer folder, but the version that is in the vendor folder for XF matches what we have in our own folder. Here is a link to an issue that someone reported...
  7. robdog

    XF 2.2 Upgrading the Guzzle 7.x

    Guzzle 6.x doesn't support PHP8.x. Are there plans to upgrade Guzzle to start using Guzzle 7? I have tried to use my own version of Guzzle with a different composer install, but ran into conflicts if there were CLI scripts attempting to use the later version of Guzzle. If there are no plans...
  8. robdog

    XF 2.2 CLI Errors and API Errors not logging properly...

    Not sure if this is where the thread belongs, but has anyone else ran into an issue with CLI scripts and API scripts not reporting to the error log within XF? Is there a config setting to make this happen? Would be really nice if the errors that happened during the execution of those scripts...
  9. robdog

    XF 2.3 Automate workflows with webhooks

    This will be helpful so I can replace my custom code that reports an error to a slack channel. So glad to see this integrated into the main framework. Nice work devs.
  10. robdog

    XF 2.3 Boosting performance in XenForo 2.3

    Is there a version of getIcon to use in JavaScript for XF 2.2.X?
  11. robdog

    XF 2.2 Anyone have a good alternative to DataTable?

    We use the DataTable plugin in our app and wanted to see if anyone else uses something that is jQuery based. Our stop gap would be to include jQuery when we use DataTable(gross), but ideally we would use something else. Thanks.
  12. robdog

    XF 2.3 Image optimization, enhanced image resizing, and more!

    Another excellent upgrade and speed improvement. Looking forward to seeing what else you guys have while I plan out my jQuery conversion...
  13. robdog

    XF 2.2 Unit Testing with XenForo (and other end-to-end testing)

    I am sure this has been discussed before and I have seen an addon around this topic, but I wanted to get some other ideas/thoughts on how other devs are unit testing their code or if folks are performing end-to-end testing within their XenForo app. I am really curious on the set up and tear...
  14. robdog

    XF 2.2 ChatGPT rewriting JavaScript

    GitHub co-pilot is fun too... ;)
  15. robdog

    Any sort of roadmap for Xenforo 2.3 ?

    Or some of us build apps that don't even use the forum feature that has a large user base and brings in large amount of revenue utilizing core functionality in XenForo along with making A TON of custom modifications. If you need something specific, build it. The devs have a roadmaps that needs...
Top Bottom