I need to edit word documents/spreedsheets like it happens in Google docs . Can i integrate Google docs into my asp.net application ?
Is it possible for me to save this edited document on to my server instead of saving it at the google account ?
Thanks,
Francis
Can i integrate Google docs into my asp.net application ?
Google provide API documentation
Is it possible for me to save this edited document on to my server
Yes, see get
instead of saving it at the google account ?
You can't let people use the Google Docs WYSIWYG editors and save to your system directly. They'd have to save to their Google account and then you could download the file.
Related
I can't find the simple answer for a simple question. I want to generate a link to my app on Google Play and check how many installs comes from this link.
For iOS this is very simple, you just go to the analytics ->sources and generate a link that has a parameter. I can't find anything like that in Google Play Developer Console. Am I missing something or there is not such option for GP?
You could use Firebase Dynamic Links.
More information here: https://firebase.google.com/docs/dynamic-links
You can create Dynamic Links using your own domain name:
https://example.com/summer-sale
https://example.com/links/promos/summer-sale
https://links.example.com/summer-sale
https://ex.amp.le/summer-sale
Or, if you don't have a domain for your app, you can use a free custom page.link subdomain:
EXAMPLE LINK: https://example.page.link/summer-sale
Create your free subdomain in the Firebase console.
All Dynamic Links features, including analytics, post-install attributions, and SDK integrations, work with both custom page.link domains and your own domain.
A WordPress site is being developed with the Google Drive Embedder Plugin, they would also like to use Algolia for its search features. Does Algolia search embedded Google Docs?
Algolia doesn't connect to Google Docs automatically, but you could index the embedded Google Docs content manually. This would require some custom development.
For each embedded doc, you would first use Google's API to download it into a file, then you would use one of Algolia's API clients to upload the content of that file into an index.
We have created a SharePoint 2010 web part where we display our company feed from https://www.linkedin.com/company/"Name of Company"/.
End-users need to login the first time (that is ok). But even though they login using their personal LinkedIn profile, they cannot see our company-feed. Why is that?
If the users are set as LinkedIn Designated Admins they can see the feed, otherwise they cannot.
We are using
<script type="text/javascript" src="//platform.linkedin.com/in.js">
api_key: "The key"
lang: da_DK
authorize: true
onLoad: onLinkedInLoad
</script>
I hope someone can share their knowledge.
This is why :'( https://developer.linkedin.com/blog/posts/2015/developer-program-changes
Starting on May 12, 2015, we will be limiting the open APIs to only support the following uses:
Allowing members to represent their professional identity via their LinkedIn profile using our Profile API.
Enabling members to post certifications directly to their LinkedIn profile with our Add to Profile tools.
Enabling members to share professional content to their LinkedIn network from across the Web leveraging our Share API.
Enabling companies to share professional content to LinkedIn with our Company API.
Only people who can admin the feed can read/update to the company feed. All others are excluded unless you manage to get yourself promoted to LinkedIN partner: https://developer.linkedin.com/partner-programs
Some light on this issue over here:
As ahmeij said, Linkedin doesnt provide anymore an easy way of embedding your company/personal profile timeline anywhere. However, there is an alternative way of implementing this.
You will make use of the RSS feed of the profile. The url will be something like this:
https://www.linkedin.com/biz/[PROFILE ID]/feed?start=0&v2=true
You can find out the numeric ID in you profile/company page.
Read the full source here: https://www.glintech.com/blog/confluence-embed-linkedin-company-feed.html
I found the way to implement a CORS proxy, and got this working.
I used this simple PHP CORS proxy
However, LinkedIn site doesn't return any information from this URL anymore, it just returns a [301 - moved permanently] error :_(
As Alberto mentioned in the post below a RSS feed can be used to create an embed code. To enable RSS on your LinkedIn and get the RSS link you can follow this guide. Then you can use this plugin to generate an embed code of the feed.
You can use a social wall solution like Walls.io to add LinkedIn company feeds to your Sharepoint website. The tool generates an iframe or JavaScript code that you can embed. Here's an article on how it works on SharePoint.
I am trying to configure a single gmail account to be used with google docs edit in Alfresco.
I added the following in alfresco-global.properties:
googledocs.googleeditable.enabled=true
googledocs.username=username#gmail.com
googledocs.password=password
googledocs.application.name=Alfresco ECM system
googledocs.url=https://docs.google.com/feeds/default/private/full
googledocs.downloadurl=https://docs.google.com/feeds/download
googledocs.spreadsheet.service.name=wise
googledocs.spreadsheet.downloadurl=https://spreadsheet.google.com/feeds/download
But, it again asks for authorization and to enter username, password, when I try editing in google docs.
Is there a way to configure the system, to directly go to the gmail account mentioned in the properties file?
In order to enable Google Docs integration with Alfresco (hope you're talking about a > 4.0 Alfresco version) you need to:
Open the Admin Console in Alfresco Share and then click Google Docs.
Open the Google Docs page and click Edit.
Set the Google Docs properties following directive from this link
There is a free Alfresco wiki PDF to configure Google Docs.
Hope it helps.
I want to use google drive functionality in my website, like user can view, download and upload their google drive content after providing login credentials using my website.
Is this functionality possible? Feel free to correct me if i'm wrong.
You can embed google drive functionality in your website. For that google provides google drive api. For CMS like Joomla can be used for embedding it into your webpage. Here is one link which lists the steps for plugging in the Google drive api into your webpage:
https://docs.google.com/presentation/d/1KBFyPhCbDVwT1PZG8mmjWIsB2nBMvOfoVr8_VOSIoGE/edit?pli=1#slide=id.gf0ec6a4_0_114
Thanks
Using Google Drive SDK for .NET, file-explorer could be developed which can connect Google Drive for saving and retrieving changes. Read start-up guide here and try hands-on DrEdit Web Application example which clearly demonstrates how to implement the same.