question

Daniel Yoder avatar image
Daniel Yoder asked

Twitch/Google Login issues

I've tried to make this work( https://learn.microsoft.com/en-us/gaming/playfab/features/authentication/platform-specific-authentication/twitch-html5) as well as the one for google login. Both are somewhat out of date it seems. Does anyone know of any updated documentation or tutorial for this?


The basic thing I'm trying to do is access playfab data via a website using Twitch login(Most of our players are connected to our database via Twitch)

2 comments
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Xiao Zha avatar image Xiao Zha commented ·

Currently, there is no updated documentation or tutorial for Twitch Login. In addition, could you tell me what exactly is the problem you are encountering?

0 Likes 0 ·
Daniel Yoder avatar image Daniel Yoder commented ·

Hi Xiao thanks for the reply!
Both are behaving in different ways but the Twitch one in particular is giving me a 403 error. The clientID and titleID have both been set correctly as far as I'm aware. I thought it might have been a localhost issue so I hosted on a public web domain. Still not working though. Any help here would be appreciated!

0 Likes 0 ·
dfdf.jpg (38.4 KiB)

1 Answer

·
Xiao Zha avatar image
Xiao Zha answered

The code used in Setting up PlayFab authentication using Twitch and HTML5 - PlayFab | Microsoft Learn can't be able to work. This is because the Twitch SDK: https://ttv-api.s3.amazonaws.com/twitch.min.js does not exist. You can download twitch-js-sdk/twitch.min.js at master mariopro/twitch-js-sdk GitHub and put it under the same floder with your html file and modify the

<!-- Include Twitch SDK -->
    <script src="https://ttv-api.s3.amazonaws.com/twitch.min.js"></script>

to

    <!-- Include Twitch SDK -->
    <script src="twitch.min.js"></script>

as a solution.

1 comment
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Daniel Yoder avatar image Daniel Yoder commented ·

Thank you so much! I'll give this a shot later today

0 Likes 0 ·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.