• Categories
  • Recent
  • Tags
  • Popular
  • Solved
  • Unsolved
  • Users
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Darkly)
  • No Skin
Collapse
brainCloud Forums
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    Load new posts
Log in to post
  • P

    UserItems.AwardUserItem cannot be blocked for clients

    Scheduled Pinned Locked Moved Unsolved APIs
    4
    0 Votes
    4 Posts
    1k Views
    Paul WinterhalderP

    Update - we have patched this issue in our Public BaaS.

    The API call is now blockable via API Blocking - but it's also disabled by default now (via the core API itself). There's a new compatibility flag (that is by default enabled for all existing apps) that preserves the old functionality.

    Paul.

  • L

    Can I check duplicated login?

    Scheduled Pinned Locked Moved General
    4
    0 Votes
    4 Posts
    786 Views
    Paul WinterhalderP

    Well - there's no great way to tell until you try doing an operation.

    You could try doing a simple ReadServerTime() call - and if that fails - the session isn't good anymore...

    http://getbraincloud.com/apidocs/apiref/?objective_c#capi-time-readservertime

    Hope that helps!

    Paul.

  • Paul WinterhalderP

    We've made a change to brainCloud's API networking...

    Scheduled Pinned Locked Moved General braincloud networking
    4
    0 Votes
    4 Posts
    993 Views
    Paul WinterhalderP

    Update 3 - okay - the networking optimization is back in place now.

    (Though we haven't turned it on for the Portals yet - just want to ensure there aren't any issues first...)

    Paul.

  • T

    Unreal 5.1 + Online Services

    Scheduled Pinned Locked Moved APIs unreal
    4
    0 Votes
    4 Posts
    1k Views
    Paul WinterhalderP

    We should point out that this doesn't mean that there aren't Unreal multiplayer examples in brainCloud - they just don't use the online subsystem paradigm per se.

    Here's our latest Unreal dedicated server example: https://github.com/getbraincloud/braincloud-roomserver-unreal

  • J

    Password content specification?

    Scheduled Pinned Locked Moved Solved General password email cloudcode
    4
    0 Votes
    4 Posts
    1k Views
    Paul WinterhalderP

    FYI - this feature was added in brainCloud 4.13 - https://getbraincloud.com/apidocs/release-4-13/

  • Ima Need-SupportI

    How can I manage multiple versions of my app between development, staging, production, etc?

    Scheduled Pinned Locked Moved Solved General versioning app management
    4
    0 Votes
    4 Posts
    2k Views
    Steve JonesS

    If your app uses Global Entities, don't forget to Export/Import the required entities from the Dev->Staging->Live apps. You can export all, or some via the Bulk Actions Menu within the Monitoring/Global Monitoring/ Global Entities page.

    More about Global Entity File Export Formats are here, https://getbraincloud.com/apidocs/api-modules/global-entity-file-formats/

    Hope this helps!

  • Paul WinterhalderP

    So - our forums are up! What do you think?

    Scheduled Pinned Locked Moved General general
    4
    4 Votes
    4 Posts
    2k Views
    C

    I like the new forums. It was something I always felt was lacking and with the quick response time, they have already proven to be very useful. Hopefully this helps connect developers using brainCloud together as well as with the brainCloud team.

  • G

    Authentication error - Unity iOS

    Scheduled Pinned Locked Moved APIs unity error ios
    4
    0 Votes
    4 Posts
    1k Views
    A

    Hi Gavin,

    Did you resolve the crash issue on iOS? I am experiencing it as well, so I feel I must have missed something 🙂

    Cheers,
    Andreas

  • A

    Cloud Api for Writing Global Properties

    Scheduled Pinned Locked Moved Feature Suggestions admin cloud code script global properties
    3
    0 Votes
    3 Posts
    1k Views
    A

    Thanks @Paul-Winterhalder

  • C

    Matchmaking: Search Multiple Lobby Types

    Scheduled Pinned Locked Moved Feature Suggestions lobby matchmaking
    3
    0 Votes
    3 Posts
    1k Views
    C

    @Paul-Winterhalder said in Matchmaking: Search Multiple Lobby Types:

    that

    Thanks Paul, I don't think I could do the different lobby info option as I would like the players to choose specifically which game mode and if I understand correctly, I can only do that by having the players search for a lobby of that game mode. It's not too much of an urgent issue, I just wanted to put it out there and see how realistic it was. I talked to Greg a bit and we discussed joining multiple lobby types at once. For now, I plan to search for multiple lobbies at once and cancel matchmaking for any possible 2nd joined lobbies.

  • H

    Recommended way to read Entity data? (Unity, C#)

    Scheduled Pinned Locked Moved APIs unity entity
    3
    0 Votes
    3 Posts
    1k Views
    T

    @Henry-Smith said in Recommended way to read Entity data? (Unity, C#):

    Sorry to bring back an old thread, but I'm just learning the platform and I thought I'd share my solution to this.

    First, define a generic class to handle the raw json response data:
    eg. my Tut1_AddTwoNumbers api returns:

    {"data":{"response":{"answer":24},"success":true},"status":200} public class Response<T> { public ResponseData<T> data; public int status; } public class ResponseData<T> { public T response; public bool success; }

    Then for each api call that you have, define a class that contains the fields that are custom to that response.

    public class Tut1_AddTwoNumbersResponse { public int answer; }

    Now, you call your function and handle the response like this:

    public void Tut1_AddTwoNumbers() { string scriptName = "Tut1_AddTwoNumbers"; // Anonymous object to supply the params. var data = new { num1 = 16, num2 = 8 }; var jsonScriptData = JsonWriter.Serialize(data); SuccessCallback successCallback = (response, userdata) => { var responseObject = JsonReader.Deserialize<Response<Tut1_AddTwoNumbersResponse>>(response); //var responseObject = JObject.Parse(response); Debug.Log($"Success The answer is '{responseObject.data.response.answer}' | raw_json={response}"); }; FailureCallback failureCallback = (status, code, error, userdata) => { Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error)); }; // Call the script _bc.ScriptService.RunScript(scriptName, jsonScriptData, successCallback, failureCallback); }

    this line is the important part:

    JsonReader.Deserialize<Response<Tut1_AddTwoNumbersResponse>>(response);

    Hope that helps someone!

  • G

    get custom entities associated to a player at login.

    Scheduled Pinned Locked Moved Cloud Code entity cloud code script custom entities
    3
    0 Votes
    3 Posts
    1k Views
    G

    Edit . you can get all custom entities for the current user with the query

    { "entityType": "[entitytype]", "ownerId": "[profileId]", "context": { "pagination": { "rowsPerPage": 50, "pageNumber": 1 }, "searchCriteria": { // other search criteria here }, "sortCriteria": { "createdAt": 1 } } }
  • C

    Server Monitor

    Scheduled Pinned Locked Moved Feature Suggestions monitoring server room server
    3
    0 Votes
    3 Posts
    1k Views
    C

    @Paul-Winterhalder Thanks Paul, looking forward to any possible solutions.

  • M

    Getting client app version

    Scheduled Pinned Locked Moved Solved Cloud Code client app version gameversion
    3
    0 Votes
    3 Posts
    1k Views
    M

    Thank you for your answer. Yes, it will be nice to have a separate API but for now, the solution suggested by you works for us.

  • A

    Shared Modules - Ability to share code between cloud scripts

    Scheduled Pinned Locked Moved Feature Suggestions cloudscript suggestion javascript
    3
    1 Votes
    3 Posts
    1k Views
    A

    Thank you very much 🙂

  • Paul WinterhalderP

    brainCloud 4.2 is released!

    Scheduled Pinned Locked Moved General release 4.2 announcement
    3
    0 Votes
    3 Posts
    2k Views
    H

    +1 to updated roadmap. Also wishing you guys implement web payments soon (xsolla or any other)

  • P

    UpdateGroupEntityData doesn't update the "updatedAt" field.

    Scheduled Pinned Locked Moved Solved Client API Defects unity group entity
    3
    1 Votes
    3 Posts
    893 Views
    JonathanJ

    The fix will be going into the 4.2 patch on Tuesday. (Sept 17th) - now Wednesday Sept 18th.

  • C

    Mass delete of users.

    Scheduled Pinned Locked Moved General crud
    3
    0 Votes
    3 Posts
    1k Views
    C

    @Chris-Brown I see it now. Thank you!

  • N

    Notification Templates

    Scheduled Pinned Locked Moved Unsolved General
    3
    0 Votes
    3 Posts
    34 Views
    J

    We’re planning some major changes to our push notification system, it’s more than just adding a few titles and content fields to the templates. It's not a near-term, stay tuned!

  • L

    Request: Improve Leaderboard Editing UX (Success Popup Blocks Buttons)

    Scheduled Pinned Locked Moved Unsolved General
    3
    0 Votes
    3 Posts
    66 Views
    L

    There are multiple leaderboards in the game separated by region, but aside from the region itself, they all use the same settings.

    When creating them initially, cloning works fine. However, after they have been created, if I need to adjust various options, I have to edit each leaderboard one by one.

    The main problem is that every time I save a change, the “Updated successfully” popup appears and covers the edit button, which makes consecutive edits across multiple leaderboards very inconvenient.

    It would be much more efficient if there were a way to edit multiple leaderboards with identical settings at the same time. At the very least, moving the success popup to a location where it does not block the button would greatly improve usability.

  • Login

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Solved
  • Unsolved
  • Users