Navigation

    brainCloud Forums
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Solved
    • Unsolved
    • Users
    • Groups
    1. Home
    2. Raymond Pendergraph
    R
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Raymond Pendergraph

    @Raymond Pendergraph

    0
    Reputation
    2
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Raymond Pendergraph Follow

    Best posts made by Raymond Pendergraph

    This user hasn't posted anything yet.

    Latest posts made by Raymond Pendergraph

    • RE: Simple S2S call via nodejs server

      This seems to be working now, the error is a wee misleading. The code was correct. The URL was incorrect and was changed to (or leave blank):

      const url = "sharedprod.braincloudservers.com";
      ...
      brainclouds2s.request(global.s2sContext, {
          service: "group",
          operation: "SYS_CREATE_GROUP",
          data: groupData,
        });
      })
      
      
      posted in S2S APIs
      R
      Raymond Pendergraph
    • Simple S2S call via nodejs server

      I'm trying to follow the basic structure of an S2S call via node as demonstrated here but I get back rafts of Java stack with this at the top:

      "status_message":"Processing exception: com.braincloud.common.ProcessingException: Invalid app ID.\
      

      and as far as I can tell I have set these values appropriately. I even tried using a numeric type for the ID. Any idea what I'm doing incorrectly?

      Code:

      const brainclouds2s = require("brainclouds2s");
      
      const appId = "1***1";
      const serverSecret = "e2******27";
      const url = "internal.braincloudservers.com";
      const serverName = "*****"
      
      const groupData = {
          name: 'TestGroup',
          groupType: 'StudentGroup',
          isOpenGroup: false,
          acl: {
              member: 1,
              other: 0
          },
          jsonOwnerAttributes: {},
          jsonDefaultMemberAttributes: {},
          jsonData: {}
      }
      global.s2sContext = brainclouds2s.init(appId, serverName, serverSecret, url);
      brainclouds2s.setLogEnabled(global.s2sContext, true);
      brainclouds2s.request(global.s2sContext,{
          appId,
          serverName,
          serverSecret,
          service:'group',
          operation:'CREATE_GROUP',
          data: groupData})
      
      
      posted in S2S APIs
      R
      Raymond Pendergraph