Forum Activity for @brian

brian
@brian
04/04/15 01:32:28PM
10,149 posts

User Service - Retrieving profiles


Proxima

I'm not seeing any issues here - as long as the BETA channel is active in your marketplace, it should show up on the first page of the "modules" tab. I just enabled BETA on a test site here and I see it, so just double check that the BETA channel active.

Also double check that you've entered your email address and system ID into the Marketplace -> Tools -> Marketplace systems correctly - you can find your info here:

https://www.jamroom.net/networklicense/licenses

Let me know if that helps.

Thanks!
brian
@brian
04/04/15 12:19:09PM
10,149 posts

Alexa code


Tips and Tricks

Go to ACP -> Skins -> ProJam Light -> Templates

scroll down to "footer.tpl" and click "modify".

paste your code in like this just above the closing html tag:

{literal}

... your alexa code here ...

{/literal}

Save it. Check the "active" checkbox, scroll down and save.

That should do it.

Hope this helps!
updated by @brian: 04/04/15 12:19:21PM
brian
@brian
04/04/15 12:16:36PM
10,149 posts

User Service - Retrieving profiles


Proxima

Right now it is in beta so do this in your Jamroom:

- go to ACP -> Core -> Marketplace -> Tools -> Release channels and click the "make active for the BETA channel

- click on "Marketplace" tab and scroll down to the Proxima Bridge module and click "install".

Hope this helps!
brian
@brian
04/04/15 11:30:41AM
10,149 posts

User Service - Retrieving profiles


Proxima

Yeah that's probably your most flexible solution:

- create the account and get the account id
- POST that data and create a new record in a special collection - i.e. api/data/user_info (or whatever)

Only include the keys you want to be searchable. That will give you an endpoint specifically for searching user data that will let you slice and dice it in whatever way you would like. Make the collection Global Read Only.

If your users won't be using your Jamroom side to "follow" each other, then you'll need to create those "follows" programmatically via the API - let me know when you get to that point and I can give you more info on how you would go about that.

Hope this helps!
brian
@brian
04/04/15 11:08:32AM
10,149 posts

Profile Category filter


Design and Skin Customization

That looks good to me - do you get errors or does it just not show any results?


Thanks!
brian
@brian
04/04/15 11:07:28AM
10,149 posts

Reclaim Page URLS


Using Jamroom

OK thanks - I'll check this out and see what's up.
brian
@brian
04/04/15 11:06:01AM
10,149 posts

Data Service - search collections


Proxima

vdragutinovic:
It sure does! Thanks. :)

No problem!
brian
@brian
04/04/15 11:04:44AM
10,149 posts

User Service - Retrieving profiles


Proxima

1) No - right now you can't search User accounts or Profiles - this is done mainly from a security perspective. What you want to do is when you create a new account, copy the info (say username and what other "public" data you would want available) over to a custom collection in the data service that you could use for listing/searching.

If you have a unique use case where you don't think this would work let me know and I can check it out.

2) No - not at this time (see #1)

3) Using the Proxima Bridge you could do this - i.e

GET http://yoursite.com/api/bridge/follower/search? ... search conditions ...

It works exactly the same as the Data Service - all operators are supported. Note that the Bridge Service module is still in beta - so please let me know if you see any issues.

A quick question - are you using Proxima to provide an API for an existing Jamroom site (i.e. users will be signing up on your Jamroom site) or as the "backend" for a mobile or desktop app?

Thanks!
brian
@brian
04/04/15 10:51:57AM
10,149 posts

Data Service - search collections


Proxima

Yes - you would use the "like" operator - check out the documentation I've added to the Data Service:

https://www.jamroom.net/proxima/documentation/using-proxima/2018/the-proxima-data-service

that should cover all the different parameters you can use when searching collections.

Let me know if that helps.

Thanks!
brian
@brian
04/04/15 08:39:31AM
10,149 posts

Profile Category filter


Design and Skin Customization

This is what the group_by option is for in jrCore_list - i.e.


{capture name="template" assign="row_tpl"}
{literal}
{foreach $_items as $item}
    {* this is shown for EACH category - modify it to suit your needs *}
    {$item.business_category}<br>
{/foreach}
{/literal}
{/capture}

{jrCore_list module="jrProfile" group_by="business_category" template=$row_tpl limit=100}


Let me know if that helps.
  403