Recent content by Joshb_

  1. Joshb_

    XF 2.3 OAuth Token use with the API

    https://xenforo.com/community/threads/single-sign-on-and-more-with-oauth2-in-xenforo-2-3.217519/ It's very vague since it operates as an ordinary Oauth application. It has the token itself and a refresh token you can hit the authorize endpoint to refresh your auth token.
  2. Joshb_

    XF 2.3 OAuth Token use with the API

    Thats how Oauth works. You're hitting the API as the user with said token.
  3. Joshb_

    XF 2.3 OAuth Token use with the API

    Yep. That was it. Didn't work at first but realized I had your Authentication header still in there. Authorization* Great stuff you guys are doing. As always. Thanks a bunch.
  4. Joshb_

    XF 2.3 OAuth Token use with the API

    Tried this with a few different endpoints.
  5. Joshb_

    XF 2.3 OAuth Token use with the API

    The oauth token endpoint returns the user_id with an access_token thrown at the API. But can we get more information out of this response or will I have to hit the API with an API-Key to get the rest of the user's information? I've tried 7 ways to Sunday to hit the API with the access_token but...
  6. Joshb_

    XF 2.0 Displaying last 3 post on a certain forum node

    It shouldn't matter in my opinion. There's no option where it makes you select the style to apply it on
  7. Joshb_

    XF 2.0 Displaying last 3 post on a certain forum node

    Still doesn't work. All add-ons disabled. Created a brand new widget, still nothing. Doesn't even display anything. @Russ
  8. Joshb_

    XF 2.0 Displaying last 3 post on a certain forum node

    Opps, I used the addon from the bottom link. I tried it again and only got this to replicate the same problem
  9. Joshb_

    XF 2.0 Displaying last 3 post on a certain forum node

    This doesn't work for me. Something I'm doing wrong? And to save space. The forum limit is all forums
  10. Joshb_

    Welcome Notice Advice

    In my opinion, I think the welcome page isn't worth it because you have the login and Register tab right above it. But other than that it looks pretty nice. Again, in my opinion, I like happy bright colors mostly so I think under the background should fade into a lighter color. But that's just me
  11. Joshb_

    XF 2.0 Can I add a menu item in the navbar in mobile view only?

    Probably PAGE_CONTAINER where the main HTML is stored for display. I would put the CSS in the app_header.less
  12. Joshb_

    XF 2.0 Can I add a menu item in the navbar in mobile view only?

    Use @media only screen <div class="mobileShow"> TEXT OR IMAGE FOR MOBILE HERE </div> Show content on mobile devices. .mobileShow {display: none;} /* Smartphone Portrait and Landscape */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px){...
Back
Top Bottom