• 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 Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    Load new posts
Log in to post
  • A

    Increase GetMultiSocialLeaderboard limit to 100

    Scheduled Pinned Locked Moved General leaderboard social
    2
    0 Votes
    2 Posts
    224 Views
    Paul WinterhalderP

    Hi Ali,

    First of all - sorry for the slow response. I somehow missed this message.

    The MultiSocialLeaderboard call is normally used to create Candy Crush-style maps - where you would normally show just the top player on each node of a map.

    It's otherwise a pretty expensive call (as we're filtering/joining your friends list with multiple leaderboard lists) - so thus we restrict things to keep things fast and server utilization reasonable.

    Do you have a use case that requires the larger leaderboard sizes - or maybe you were mistaking the intention of this call with another?

    Anyway, hope that perspective helps!

    Cheers,

    Paul.

  • M

    Sending messages to Chat Channels using BrainCloud admin panel

    Scheduled Pinned Locked Moved General chat channels messages
    2
    0 Votes
    2 Posts
    227 Views
    Paul WinterhalderP

    Hi Madalin,

    Good question - but unfortunately you assessment is correct. We do not currently have a way (other than with the API Explorer) to via and/or send Chat messages via the Portal.

    That said, we do have plans to implement a Chat Moderation portal. We're currently working on the scheduling of the work now - I expect it to start soon.

    You'll find the item in our Roadmap here - https://portal.productboard.com/braincloud/1-braincloud-baas-roadmap/c/61-chat-moderation-portal?utm_medium=social&utm_source=portal_share

    Feel free to add your +1 to it!

    Paul.

  • K

    lobbyId ?

    Scheduled Pinned Locked Moved Solved APIs ios lobbyid lobby matchmaking
    6
    0 Votes
    6 Posts
    752 Views
    K

    Oh okay, I understand.
    Yeah I was already trying to use the C++ SDK, and I will also be waiting for the Obj-C one.

    Thank you!

  • D

    Understanding VerifyPurchases for "Non-Consumables"

    Scheduled Pinned Locked Moved Solved APIs non-consumable verifypurchases
    4
    0 Votes
    4 Posts
    538 Views
    Paul WinterhalderP

    Happy to help! 馃憤

  • A

    Method to access "other user" items

    Scheduled Pinned Locked Moved Solved General items users
    2
    1 Votes
    2 Posts
    433 Views
    Paul WinterhalderP

    Hi Claudiu,

    It's possible to do this using cloud script... you just need to impersonate the other user...

    Here's an example script that does this - caveat, it only returns the first page of user items.

    Create the script, and set it's test parameters to:

    { "profileId": "www-xxx-yyy-zzzz-123456" }

    (Note - you'll of course want to replace profileId with an id of a user that you want to test with.)

    And here's the code...

    var response = {}; // We need to impersonate another user to make this call var otherSession = bridge.getSessionForProfile( data.profileId ); var otherUserItemsProxy = bridge.getUserItemsServiceProxy( otherSession ); // Now, request the page of items from that proxy var context = { "pagination": { "rowsPerPage": 50, "pageNumber": 1 }, "searchCriteria": {}, "sortCriteria": { "createdAt": 1 } }; var includeDef = true; var itemResult = otherUserItemsProxy.getUserItemsPage( context, includeDef ); if (( itemResult.status == 200) && ( itemResult.data.results.count > 0 )) { response.items = itemResult.data.results.items; } else { response.items = []; } response;

    For convenience I've attached an export of the script. You can import this script into your app from the Design | Cloud Code | Scripts screen.

    Hope that helps!

    Paul.

    RetrieveAnotherUsersItems.ccjs

  • D

    Award Achievement Issue

    Scheduled Pinned Locked Moved Solved Cloud Code cloud code script gamification
    5
    0 Votes
    5 Posts
    574 Views
    D

    Cheers guys. Thanks for the quick response!

  • Paul WinterhalderP

    brainCloud 4.3 is here!

    Scheduled Pinned Locked Moved General 4.3 release braincloud
    1
    0 Votes
    1 Posts
    282 Views
    No one has replied
  • C

    Changing groups from Public to Private and back on dashboard

    Scheduled Pinned Locked Moved General unity groups
    1
    0 Votes
    1 Posts
    265 Views
    No one has replied
  • G

    Google Play Developer API. From December 1 2019, versions 1 and 2 of this API will no longer be available. Update to version 3 before this date.

    Scheduled Pinned Locked Moved General google play api
    1
    0 Votes
    1 Posts
    279 Views
    No one has replied
  • Omar AlzayedO

    Online state when viewing user

    Scheduled Pinned Locked Moved Feature Suggestions users
    2
    0 Votes
    2 Posts
    588 Views
    Paul WinterhalderP

    Hmm, I'm guessing that this is so that you as a developer have a warning that you may be mucking with an online user's data?

    Sadly, unless the user is using RTT, the system doesn't deterministically know that a user is still online.

    We do however know when the user last logged in - and that is shown on the User Summary page here (see capture).

    You can further get an idea if a user is still online via the User Monitoring | Logs page...

    Might be interesting to see if we could query the last session for the time of the last received request... though we'd need to somehow differentiate a real session from an API Explorer session... Hmm, some food for thought.

    2019-11-02_15-55-22.png

  • M

    Tool for provisioning all the infrastructure resources in BrainCloud

    Scheduled Pinned Locked Moved General provisioning infrastructure
    2
    0 Votes
    2 Posts
    343 Views
    A

    Hi,

    One thing that you wont be able to do via api is managing users (list api), other than that almost everything is available with cloud script.

  • M. Ram贸n L贸pez TorresM

    Tournament division by level

    Scheduled Pinned Locked Moved General sport-league divisions
    2
    0 Votes
    2 Posts
    316 Views
    Paul WinterhalderP

    Hi,

    This is very doable in brainCloud.

    Check out the Tiers design note in this knowledge-base article:
    http://help.getbraincloud.com/en/articles/3344756-increasing-tournament-engagement-with-divisions-and-or-tiers

    Hope that helps!

    Cheers,

    Paul.

  • C

    Item Catalog - Multiple items with same Definition ID

    Scheduled Pinned Locked Moved Solved Portal Defects item item catalog bug duplicate
    5
    0 Votes
    5 Posts
    534 Views
    Paul WinterhalderP

    馃憤 Happy to help!

  • Login

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