The configured Personal tabs are displaying successfully in Teams web app/via browser. But not rendering in the desktop version. The tabs url changed in the below format to overcome this issue but not sure why this is replicating.
Tab url format: https:///_layouts/15/teamslogon.aspx?spfx=true&dest=/SitePages/Get-started-with-Microsoft-365.aspx
This issue has been resolved after configuring the "Page URL" and "Content URL" in below format:
For page URL:
https://yourtenantname.sharepoint.com/sites/CorporatePortal/SitePages/Home.aspx
Content URL must be:
https://yourtenantname.sharepoint.com/_layouts/15/teamslogon.aspx?spfx=true&dest=/SitePages/Home.aspx
Related
I need to update URL of Microsoft team tab at runtime, I have checked in the MSDN blog and it seems that it updates only the description of the tab not the URL using graph API call (https://graph.microsoft.com/v1.0/teams/{groupid}/channels/{channelid}/tabs/{tabid}). Could anyone suggest how to update tab URL as well?
I have tried calling the below graph API, but it updates only the tab name
https://graph.microsoft.com/v1.0/teams/{groupid}/channels/{channelid}/tabs/{tabid}
{
"displayName": "My Contoso Tab - updated",
}
Microsoft teams tab URL should be updated.
The web URL(deep link) part you are trying to update, It is an system generated
value which can't be changed.
I am creating a Firefox screenshot plugin for which I need to open an html page rendering screen share in https ()
Locally using AddOn SDK, my url of opened html file is : resource://jid1-q3wuqdulcvnnrq-at-jetpack/toolbar_button/data/index.html
Now, on this link I get an error :
In about:config, please enable media.getusermedia.screensharing.enabled
and add this site's domain name to media.getusermedia.screensharing.allowed_domains in about:config
Is there some way to set tab.open(){} such that it is rendered in secure mode.
Ref. : This page
Clicking the Window button on above link redirects page to https mode for screen sharing.
Also in about:config => media.getusermedia.screensharing.allowed_domains => need to allow resource file domain.
Can someone please guide to enable getUserMedia on firefox.
I am using objectProperties for image to be visible in yammer feed of page. But it is not showing in yammer site feed page. Image url I am specifiying from SharePoint site collection image library(https://XX.sharepoint.com/SiteCollectionImages/PR.gif). However it is working fine if I give some internet accessed image (e.g. www.google.com/images/123.gif).
Also If I click on “goto page” link in that feed there same image is visible. Please note I am already logged in to SharePoint site with another tab.
objectProperties: {
type: "page",
title: pageTitle,
url: pageUrl,
image: "https://XX.sharepoint.com/SiteCollectionImages/PR.gif"
}
#Yammer-team: I think embed.ly is interrupting in home page feed. can you please check and confirm. Thanks.
I got the answer from Yammer documentation that currently yammer is supporting image url only accessible from publicly accessible content. https://developer.yammer.com/opengraph/#og-schema
one more comment from Myo Thein that - "We use embed.ly and hence it needs to be available on the internet."
I have made an app that calls my mobile website. The mobile website has a click-to-call button, and when touching this button in my app, I get an error message saying "Webpage not available". This is not a problem if I visit my site through the browser. Anyone having an idea what to do?
are you using the webviewer component? The webviewer is no full browser...You could add a button in App Inventor and use the phone call component alternatively.
or you could use the activity starter to start a full browser to display your page, more info see here
Open the browser to a Web page
Use these activity starter properties to open a specific web page:
Action: android.intent.action.VIEW
DataUri: http://news.google.com
We have an a HTTPS site that brings up a page from a different site of ours that’s HTTP.
In IE (9), we get the message at the bottom of the page:
“Only secure content is displayed. What’s the risk? [Show all content]”.
When the button is clicked, it closes the lightbox-ish control that's open and returns to the page it was overlaid on.
Does anyone know how to avoid this?
In the HTTP site’s page, one guy here had the idea to add, at the end of On_Load, the following to turn off cross-site scripting protection:
this.Response.Headers.Add("X-XSS-Protection", "0");
Both sites are C# / ASP.NET 4.0.
Thanks in advance!
Add the url to your trusted sites, it's the only way if you don't send all data through https.
Internet Options -> Security -> Trusted Sites -> Sites.
If this is something that needs to be company wide, I would recommend pushing out the rule via a group policy.
Alternatively, allow access the control using https on the other site (if you can) and reference that - the warning will disappear.
The real setting to enable here is to "Display mixed content" for the zone of the site you want. If the site is on your Intranet, you select Intranet zone in the Security settings, then Custom level. If it's an Internet site, you go there and go to Custom level.
There, you should see the "Display mixed content" setting, and simply select "Enable", then "OK" your way out of the dialogs.
Reference: https://www.mydigitallife.net/how-to-disable-only-secure-content-is-displayed-in-ie-always-show-all-mixed-content/