Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
I am trying to set a image for an user on the mashup then how it is possible to do it ? please help me to do it
You can find such service under Entities - User in custom service section in any Thing entity, here's the code:
var params = {
content: undefined /* IMAGE */
};
// no return
Users["ryan"].SetAvatar(params);
you can change the User name and the IMAGE name as you want
When I made the user I was given an image then I want here that when a user login then it automatically show his image automatically acc. to user authentication
You can design a mashup with Value Display widget, and put the Avatar of the current Login user to this widget.