question

ramingadimli avatar image
ramingadimli asked

Playfab CloudScript using Azure functions

What type of .Net Azure Functions is the best to integrate with Playfab? Isolated or In-process functions?

My Functions will work with HttpTrigger mostly.

I read about PlayFabCloudScriptPlugin for In-process functions, which wraps requests into a convenient form.

Thanks!

10 |1200

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

1 Answer

·
Xiao Zha avatar image
Xiao Zha answered

The in-progress functions are only supported on Long Term Support version of .NET, such as .NET 6. To create functions that can run on other supported version, you may use isolated process. For more information, you can refer to Develop C# class library functions using Azure Functions | Microsoft Learn and Guide for running C# Azure Functions in an isolated process | Microsoft Learn. In addition, we don’t recommend using PlayFabCloudScriptPlugin since it’s outdated. You can refer to PlayFab CloudScript using Azure Functions Quickstart Guide - PlayFab | Microsoft Learn to create an Azure Function and you may also import CS2AFHelperClasses.cs to help handle the request.

10 |1200

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

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.