Insights: Do admins get counted in the insights - analysis

Does Facebook count a page administrators impressions/visits/etc for their page? i have created a page and was wondering if my views on my page were being counted.

Yes, they are being counted the same as any other user.

Related

How to track time on page per user with application insights

With asp.net core mvc, how does one track time on page per user? I.e I want to track how long a user stays on a page (or all pages)
Did you try autoTrackPageVisitTime property sir? I find it seems to meet your requirement and I tested it in my side. Here's the query log in application insights.

Heap Analytics (iOS) - Is it possible to track counts of number of items (photos) selected each time a user goes to the page?

I need to use Heap Analytics to count number of photos selected each time user goes to a page to select pages.
The problem I am facing is that I can not distinguish unique page visits for a particular user so count of number of items keeps growing no matter when when I as the single user visit the page. Currently, the graph I am generating shows an aggregate count of all times I visit the page and select photos.
How do I segregate page view instances in Heap Analytics to properly capture unique visits to a page and count each visits' number of items selected.
Try https://fabric.io it is very easy to implement and has a lot of features that you might need in the future.

Changing a user session to a page

I'm building an app which has users, pages and groups. I want users to be able to message the pages, and for the admins of pages to be able to reply as the page, as is done on Facebook. I'm not really sure how to go about this in Rails though. Does anybody know how this is done on Facebook? Would the user session be destroyed and another session created for the page, through an admin column? That's the only way I can think of it being done, but am not sure how to go about this using Devise.
Any help would be greatly appreciated.
You can use some kind of "context switching" method. i.e: I'm logged in as a user, but I can switch my context to a page if I'm one of the page admins. Switching contexts can be handled using namespaces.
You may also check mailboxer gem, it allows objects to message each other. i.e: a user can message a page and you can set it up so page admins are notified if there's a new message. If you're a page admin, you can switch your context to a page and reply to the message, and so on.

Find all users of all projects with Jira API

I need to get a list of projects for currently logged in user. I found the decision of oppozite task here: JIRA SOAP API : get the list of users
Is there a way to do this through Jira API?
Do you mean which projects a user is allowed to see issues in? If so, you want to use
getPermissionSchemes to retrieve an array of RemotePermissionSchemes, then use getPermissionMappings on each of those to get the permissions that you want to see, e.g. View Issues (by id). The problem is you'd have to do this for all projects (can be cached) but then getting the roles for the user only works for the logged in user.
summary: I'd write my own SOAP method to do this
These are 2 questions:
Which users are currently logged in?
List of projects for a user?
For the first one, I found some entries in the JIRA issue tracker: Users currently logged on
The second one is easier, have a look at the API

Determine the view count like in youtube using Asp.net MVC

Do anyone knows how to do the View count for a specific page.
Like in youtube, when you click a video, the number of view count will increment. But if you already viewed the video before it will not increment.
I would like to know how to do this in asp.net mvc. I already have an idea but im not sure if right.
I need an expert advice... thanks
You would probably need to store the total view count in a db and as serbrech said use a cookie to determine if the user has been to the page before and if not increment the view count.
I would simply store a permanent cookie on the user...
Though, that would be reset when the user deletes it.

Resources