This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//For Facebook | |
Strategy.prototype._convertProfileFields = function(profileFields) { | |
var map = { | |
'id': 'id', | |
'username': 'username', | |
'displayName': 'name', | |
'name': ['last_name', 'first_name', 'middle_name'], | |
'gender': 'gender', | |
'profileUrl': 'link', | |
'emails': 'email', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Steps to Accomplish Xamarin.Forms with Azure | |
Steps with Explanatory Notes | |
Section 1 - Create or Attach to a Windows Azure Mobile Service URI | |
1. Log into https://manage.windowsazure.com | |
2. Click on the option to create an Azure Mobile Service (WAMS) if the one you want to use does not exist otherwise just click on the one you will be using in this process. By default you get a ToDo Items Entity and Controller | |
3. Optional – Adjust your Data Objects(Entitys Add, Edit, etc) | |
4. Optional – Adjust your Controllers (CRUD-Q Capabilities) | |
5. Publish your WAMS URI back to Azure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MongoDB shell version: 3.0.4 | |
connecting to: ds034208.mongolab.com:34208/FabianMongoLab | |
> db.JailBreak.find().pretty() | |
{ | |
"_id" : ObjectId("558ddb8791bb5a9e249a55de"), | |
"Version" : null, | |
"CreatedAt" : [ | |
NumberLong("635709569354081905"), | |
0 | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#you will need to set up a Trusted Authority in your ON Premises SP2013 | |
#below takes SPO Principal Object and registers it with SP On Prem Root Web | |
$spoappprincipalID = (Get-MsolServicePrincipal -ServicePrincipalName $spoappid).ObjectID | |
$sponameidentifier = "$spoappprincipalID@$spocontextID" | |
$appPrincipal = Register-SPAppPrincipal -site $site.rootweb -nameIdentifier $sponameidentifier -displayName "SharePoint Online" | |
#you can verify this worked by running the POSH below | |
Get-SPAppPrincipal -site $site.rootweb -NameIdentifier $sponameidentifier | format-table -autosize -wrap |
NewerOlder